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

LibJS/JIT: Compile the Decrement bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-20 12:43:08 +02:00
parent 966b6f78a6
commit 12898f5aef
3 changed files with 22 additions and 0 deletions

View file

@ -38,6 +38,7 @@ private:
void compile_jump(Bytecode::Op::Jump const&);
void compile_jump_conditional(Bytecode::Op::JumpConditional const&);
void compile_increment(Bytecode::Op::Increment const&);
void compile_decrement(Bytecode::Op::Decrement const&);
void compile_enter_unwind_context(Bytecode::Op::EnterUnwindContext const&);
void compile_leave_unwind_context(Bytecode::Op::LeaveUnwindContext const&);
void compile_throw(Bytecode::Op::Throw const&);