mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-18 16:30:50 +00:00
LibJS: Implement bitwise right shift operator (>>)
This commit is contained in:
parent
f0e7404480
commit
502d1f5165
Notes:
sideshowbarker
2024-07-19 07:21:39 +09:00
Author: https://github.com/linusg
Commit: 502d1f5165
Pull-request: https://github.com/SerenityOS/serenity/pull/1931
Reviewed-by: https://github.com/awesomekling
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