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

LibJS: Compile the CallWithArgumentArray bytecode instruction

This commit is contained in:
Idan Horowitz 2023-10-28 21:04:09 +03:00 committed by Andreas Kling
parent 2b65a80ecb
commit b2d8d0c270
5 changed files with 52 additions and 27 deletions

View file

@ -111,6 +111,7 @@ private:
void compile_put_by_value(Bytecode::Op::PutByValue const&);
void compile_call(Bytecode::Op::Call const&);
void compile_call_with_argument_array(Bytecode::Op::CallWithArgumentArray const&);
void compile_typeof_variable(Bytecode::Op::TypeofVariable const&);
void compile_set_variable(Bytecode::Op::SetVariable const&);
void compile_continue_pending_unwind(Bytecode::Op::ContinuePendingUnwind const&);