When using arithmetic assignment operators, parenthesis should be added to the right operand. # [Example](https://typescripttolua.github.io/play.html#src=let%20x%20%3D%200%3B%0Ax%20*%3D%202%2B3) ## Input ```ts let x = 0; x *= 2+3 // = 0 ``` ## Compiled ```lua local x = 0 x = x * 2 + 3 --> 3 ``` ## Expected ```lua local x = 0 x = x * (2 + 3) --> 0 ```
When using arithmetic assignment operators, parenthesis should be added to the right operand.
Example
Input
Compiled
Expected