compilium icon indicating copy to clipboard operation
compilium copied to clipboard

Impl compound assignment operators

Open hikalium opened this issue 5 years ago • 1 comments

  • [x] *=
  • [x] /=
  • [x] %=
  • [x] +=
  • [x] -=
  • [x] <<=
  • [x] >>=
  • [ ] &=
  • [ ] ^=
  • [ ] |=

hikalium avatar Aug 12 '19 06:08 hikalium

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.

hikalium avatar Aug 19 '19 14:08 hikalium