1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +00:00

LibJS: Add bytecode ops for >, >= and <=

This commit is contained in:
Gunnar Beutner 2021-06-07 19:57:38 +02:00 committed by Andreas Kling
parent 73b8acf432
commit 4be3374b24
4 changed files with 99 additions and 0 deletions

View file

@ -17,7 +17,10 @@
O(Div) \
O(Mod) \
O(Exp) \
O(GreaterThan) \
O(GreaterThanEquals) \
O(LessThan) \
O(LessThanEquals) \
O(AbstractInequals) \
O(AbstractEquals) \
O(NewString) \