1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

LibJS/JIT: Compile the CopyObjectExcludingProperties instruction

This commit is contained in:
Simon Wanner 2023-10-30 02:00:53 +01:00 committed by Andreas Kling
parent 9494fbe670
commit ac59e982a9
3 changed files with 44 additions and 1 deletions

View file

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