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

LibJS/JIT: Compile the NewObject bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-20 13:12:36 +02:00
parent 580249d650
commit d866780235
2 changed files with 16 additions and 0 deletions

View file

@ -54,6 +54,7 @@ private:
void compile_return(Bytecode::Op::Return const&);
void compile_new_string(Bytecode::Op::NewString const&);
void compile_new_object(Bytecode::Op::NewObject 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&);