Expand assignment operators

This commit is contained in:
pyoor 2017-09-19 13:14:37 -04:00
parent d99799e430
commit 4ab0af5feb
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ make.text = {
},
assignmentOperator: function () {
return random.pick([
'=', '-=', '+=', '*=', '/='
'=', '+=', '-=', '*=', '/=', '%=', '**=', '<<=', '>>=', '>>>=', '&=', '^=', '|='
])
},
arithmeticOperator: function () {