1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:48:12 +00:00

LibJS: Add bytecode ops for &, | and ^

This commit is contained in:
Luke 2021-06-07 19:16:04 +01:00 committed by Andreas Kling
parent 4be3374b24
commit ae763f1ade
4 changed files with 100 additions and 1 deletions

View file

@ -34,7 +34,10 @@
O(JumpIfTrue) \
O(Call) \
O(EnterScope) \
O(Return)
O(Return) \
O(BitwiseAnd) \
O(BitwiseOr) \
O(BitwiseXor)
namespace JS::Bytecode {