LibJS: Add bytecode ops for &, | and ^

This commit is contained in:
Luke 2021-06-07 19:16:04 +01:00 committed by Andreas Kling
commit ae763f1ade
Notes: sideshowbarker 2024-07-18 12:41:11 +09:00
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 {