taichi.js
taichi.js copied to clipboard
Support missing compound assignment operators `*=`, `/=`, `%=`, `>>=`, `<<=`
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.