Closed Danielku15 closed 10 years ago
It seems several C# / JavaScript Assignment operators are not implemented:
int a = 3; int b = 0; a >>= b; a <<= b; a |= b; a &= b; a ^= b;
enum JsBinaryOperator
Idioms.ToBinaryOperator
JSBinaryOperators.GetToken
Thanks for the report! Fixed. (new unit tests in NumberTests)
It seems several C# / JavaScript Assignment operators are not implemented:
enum JsBinaryOperator
is missing the equivalents.Idioms.ToBinaryOperator
is missing the mapping.JSBinaryOperators.GetToken
is missing the textual mapping.