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

LibJS/JIT: Compile the CreateVariable bytecode instruction

This commit is contained in:
Simon Wanner 2023-10-29 02:26:15 +02:00 committed by Andreas Kling
parent 54f1f7a51b
commit 224f92f6e4
3 changed files with 44 additions and 0 deletions

View file

@ -101,6 +101,8 @@ private:
void compile_new_regexp(Bytecode::Op::NewRegExp const&);
void compile_new_bigint(Bytecode::Op::NewBigInt const&);
void compile_create_variable(Bytecode::Op::CreateVariable const&);
void compile_get_by_id(Bytecode::Op::GetById const&);
void compile_get_by_value(Bytecode::Op::GetByValue const&);
void compile_get_global(Bytecode::Op::GetGlobal const&);