mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 16:16:43 +00:00
LibJS: Implement <= and >= binary operators
This commit is contained in:
parent
fdf7f81ba9
commit
0fe87c5fec
Notes:
sideshowbarker
2024-07-19 08:45:08 +09:00
Author: https://github.com/deoxxa
Commit: 0fe87c5fec
Pull-request: https://github.com/SerenityOS/serenity/pull/1425
Reviewed-by: https://github.com/sunverwerth
6 changed files with 38 additions and 0 deletions
|
@ -219,7 +219,9 @@ enum class BinaryOp {
|
|||
TypedEquals,
|
||||
TypedInequals,
|
||||
GreaterThan,
|
||||
GreaterThanEquals,
|
||||
LessThan,
|
||||
LessThanEquals,
|
||||
BitwiseAnd,
|
||||
BitwiseOr,
|
||||
BitwiseXor,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue