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

LibJS/JIT: Compile the SetVariable bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-21 15:34:43 +02:00
parent 393d90abe1
commit 6a16783c66
2 changed files with 31 additions and 0 deletions

View file

@ -70,6 +70,7 @@ private:
void compile_call(Bytecode::Op::Call const&);
void compile_typeof_variable(Bytecode::Op::TypeofVariable const&);
void compile_set_variable(Bytecode::Op::SetVariable const&);
void store_vm_register(Bytecode::Register, Assembler::Reg);
void load_vm_register(Assembler::Reg, Bytecode::Register);