1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 07:48:12 +00:00

LibJS: Add bytecode generation for BinaryOp::In

This commit is contained in:
Linus Groh 2021-06-07 21:13:37 +01:00
parent 93eae063a1
commit 5e996de8c6
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 {