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
Notes: sideshowbarker 2024-07-19 08:16:45 +09:00
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,