Expand assignment operators
This commit is contained in:
parent
d99799e430
commit
4ab0af5feb
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ make.text = {
|
||||||
},
|
},
|
||||||
assignmentOperator: function () {
|
assignmentOperator: function () {
|
||||||
return random.pick([
|
return random.pick([
|
||||||
'=', '-=', '+=', '*=', '/='
|
'=', '+=', '-=', '*=', '/=', '%=', '**=', '<<=', '>>=', '>>>=', '&=', '^=', '|='
|
||||||
])
|
])
|
||||||
},
|
},
|
||||||
arithmeticOperator: function () {
|
arithmeticOperator: function () {
|
||||||
|
|
Loading…
Reference in a new issue