LibJS/JIT: Compile the TypeofVariable bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-21 15:26:03 +02:00
commit e946440ed3
Notes: sideshowbarker 2024-07-17 09:49:48 +09:00
3 changed files with 21 additions and 0 deletions

View file

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