LibJS: Add bytecode generation for BinaryOp::In

This commit is contained in:
Linus Groh 2021-06-07 21:13:37 +01:00
commit 5e996de8c6
Notes: sideshowbarker 2024-07-18 12:40:15 +09:00
4 changed files with 42 additions and 6 deletions

View file

@ -48,7 +48,8 @@
O(Typeof) \
O(LeftShift) \
O(RightShift) \
O(UnsignedRightShift)
O(UnsignedRightShift) \
O(In)
namespace JS::Bytecode {