1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00

LibJS: Implement <= and >= binary operators

This commit is contained in:
Conrad Pankoff 2020-03-12 23:07:08 +11:00 committed by Andreas Kling
parent fdf7f81ba9
commit 0fe87c5fec
6 changed files with 38 additions and 0 deletions

View file

@ -219,7 +219,9 @@ enum class BinaryOp {
TypedEquals,
TypedInequals,
GreaterThan,
GreaterThanEquals,
LessThan,
LessThanEquals,
BitwiseAnd,
BitwiseOr,
BitwiseXor,