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:
parent
f0e7404480
commit
502d1f5165
5 changed files with 88 additions and 1 deletions
|
@ -568,6 +568,7 @@ enum class AssignmentOp {
|
|||
MultiplicationAssignment,
|
||||
DivisionAssignment,
|
||||
LeftShiftAssignment,
|
||||
RightShiftAssignment,
|
||||
};
|
||||
|
||||
class AssignmentExpression : public Expression {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue