LibJS: Add bytecode generation for BinaryOp::InstanceOf

This commit is contained in:
Linus Groh 2021-06-07 21:18:19 +01:00
commit 9c0d83d11d
Notes: sideshowbarker 2024-07-18 12:40:12 +09:00
4 changed files with 35 additions and 2 deletions

View file

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