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

LibJS: Rename {Abstract,Typed => Loosely,Strictly}{Equals,Inequals}

This affects the AST's BinaryOp enum as well as the Bytecode's
ENUMERATE_BYTECODE_OPS and JS_ENUMERATE_COMMON_BINARY_OPS macros.
This commit is contained in:
Linus Groh 2021-09-24 00:06:10 +02:00
parent facbe32fcd
commit 32932f83be
6 changed files with 33 additions and 33 deletions

View file

@ -23,10 +23,10 @@
O(GreaterThanEquals) \
O(LessThan) \
O(LessThanEquals) \
O(AbstractInequals) \
O(AbstractEquals) \
O(TypedInequals) \
O(TypedEquals) \
O(LooselyInequals) \
O(LooselyEquals) \
O(StrictlyInequals) \
O(StrictlyEquals) \
O(NewBigInt) \
O(NewArray) \
O(IteratorToArray) \