compilium
compilium copied to clipboard
Impl compound assignment operators
- [x] *=
- [x] /=
- [x] %=
- [x] +=
- [x] -=
- [x] <<=
- [x] >>=
- [ ] &=
- [ ] ^=
- [ ] |=
The value of (left_expr assign_op right_expr) should be value of left expr after the assignment. Current Tests does not cover this and at least LShift and RShift assignment operators are not handling this case properly. Add this test cases before closing this issue.