taichi.js icon indicating copy to clipboard operation
taichi.js copied to clipboard

Support missing compound assignment operators `*=`, `/=`, `%=`, `>>=`, `<<=`

Open AmesingFlank opened this issue 2 years ago • 0 comments

We only support +=, &=, |=, ^= right now. These are translated into atomic operators (which will be demoted if possible). It would be great to support -=, *=, /=, %=, >>=, <<= and translate them into simple non-atomic operators.

AmesingFlank avatar Apr 22 '22 11:04 AmesingFlank