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

LibJS/JIT: Compile the PutByValue bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-21 15:55:15 +02:00
parent c2aad0f573
commit 7097169967
3 changed files with 26 additions and 0 deletions

View file

@ -70,6 +70,7 @@ private:
void compile_get_global(Bytecode::Op::GetGlobal const&);
void compile_put_by_id(Bytecode::Op::PutById const&);
void compile_put_by_value(Bytecode::Op::PutByValue const&);
void compile_call(Bytecode::Op::Call const&);
void compile_typeof_variable(Bytecode::Op::TypeofVariable const&);