LibJS/JIT: Compile the PutByValueWithThis instruction

This commit is contained in:
Simon Wanner 2023-10-30 01:32:20 +01:00 committed by Andreas Kling
commit 9494fbe670
Notes: sideshowbarker 2024-07-17 02:39:10 +09:00
3 changed files with 34 additions and 1 deletions

View file

@ -137,7 +137,8 @@ private:
O(DeleteVariable, delete_variable) \
O(GetMethod, get_method) \
O(GetNewTarget, get_new_target) \
O(HasPrivateId, has_private_id)
O(HasPrivateId, has_private_id) \
O(PutByValueWithThis, put_by_value_with_this)
# define DECLARE_COMPILE_OP(OpTitleCase, op_snake_case, ...) \
void compile_##op_snake_case(Bytecode::Op::OpTitleCase const&);