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

LibJS/JIT: Compile the NewFunction bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-21 15:49:04 +02:00
parent 9f61cda27e
commit 9c93d100d1
3 changed files with 33 additions and 0 deletions

View file

@ -63,6 +63,8 @@ private:
void compile_new_string(Bytecode::Op::NewString const&);
void compile_new_object(Bytecode::Op::NewObject const&);
void compile_new_array(Bytecode::Op::NewArray const&);
void compile_new_function(Bytecode::Op::NewFunction 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&);