1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:57:46 +00:00

LibJS/JIT: Add fast path for loose equality check between 2 objects

There are more fast paths to be added here, just starting with this
one since it's heavy on Kraken/ai-astar.js :^)
This commit is contained in:
Andreas Kling 2023-11-12 14:42:37 +01:00
parent 4e9e183a34
commit e41f0d9dec
2 changed files with 45 additions and 1 deletions

View file

@ -51,7 +51,6 @@ private:
O(In, in) \
O(InstanceOf, instance_of) \
O(LooselyInequals, loosely_inequals) \
O(LooselyEquals, loosely_equals) \
O(StrictlyInequals, strict_inequals) \
O(StrictlyEquals, strict_equals)