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

LibJS/JIT: Compile the GetCalleeAndThisFromEnvironment instruction

This commit is contained in:
Andreas Kling 2023-10-27 13:48:07 +02:00
parent dabaaabfc0
commit 935d67cfcf
6 changed files with 94 additions and 38 deletions

View file

@ -96,6 +96,7 @@ private:
void compile_get_by_value(Bytecode::Op::GetByValue const&);
void compile_get_global(Bytecode::Op::GetGlobal const&);
void compile_get_variable(Bytecode::Op::GetVariable const&);
void compile_get_callee_and_this_from_environment(Bytecode::Op::GetCalleeAndThisFromEnvironment const&);
void compile_put_by_id(Bytecode::Op::PutById const&);
void compile_put_by_value(Bytecode::Op::PutByValue const&);