You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: