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

LibJS/JIT: Compile the ResolveThisBinding bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-20 12:33:08 +02:00
parent b2602a4bae
commit 1c0efbec6b
2 changed files with 16 additions and 0 deletions

View file

@ -42,6 +42,7 @@ private:
void compile_leave_unwind_context(Bytecode::Op::LeaveUnwindContext const&);
void compile_throw(Bytecode::Op::Throw const&);
void compile_to_numeric(Bytecode::Op::ToNumeric const&);
void compile_resolve_this_binding(Bytecode::Op::ResolveThisBinding const&);
#define DO_COMPILE_COMMON_BINARY_OP(OpTitleCase, op_snake_case) \
void compile_##op_snake_case(Bytecode::Op::OpTitleCase const&);