LibJS: Implement bitwise right shift operator (>>)

This commit is contained in:
Linus Groh 2020-04-23 13:45:19 +01:00 committed by Andreas Kling
commit 502d1f5165
Notes: sideshowbarker 2024-07-19 07:21:39 +09:00
5 changed files with 88 additions and 1 deletions

View file

@ -568,6 +568,7 @@ enum class AssignmentOp {
MultiplicationAssignment,
DivisionAssignment,
LeftShiftAssignment,
RightShiftAssignment,
};
class AssignmentExpression : public Expression {