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

LibJS: Implement bitwise left shift operator (<<)

This commit is contained in:
Linus Groh 2020-04-23 13:36:14 +01:00 committed by Andreas Kling
parent 97366f4dd4
commit f0e7404480
7 changed files with 95 additions and 1 deletions

View file

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