1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:17:44 +00:00

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
parent f0e7404480
commit 502d1f5165
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 {