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

LibJS: Implement abstract equality and inequality

This commit is contained in:
0xtechnobabble 2020-03-16 00:23:38 +02:00 committed by Andreas Kling
parent 4d22a142f7
commit dfbaa8e543
6 changed files with 64 additions and 2 deletions

View file

@ -248,6 +248,8 @@ enum class BinaryOp {
Slash,
TypedEquals,
TypedInequals,
AbstractEquals,
AbstractInequals,
GreaterThan,
GreaterThanEquals,
LessThan,