1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:07:36 +00:00

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
parent 847889343f
commit 9494fbe670
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&);