1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:07:35 +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

@ -174,6 +174,7 @@ Value add(Value lhs, Value rhs);
Value sub(Value lhs, Value rhs);
Value mul(Value lhs, Value rhs);
Value div(Value lhs, Value rhs);
Value eq(Value lhs, Value rhs);
Value typed_eq(Value lhs, Value rhs);
const LogStream& operator<<(const LogStream&, const Value&);