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

LibJS/JIT: Compile the TypeofVariable bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-21 15:26:03 +02:00
parent d368dc5d25
commit e946440ed3
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);