1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:47:34 +00:00

LibJS/JIT: Compile the JumpNullish bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-27 16:22:27 +02:00
parent 17b2c7d965
commit d6756decb9
2 changed files with 24 additions and 0 deletions

View file

@ -45,6 +45,7 @@ private:
void compile_typeof_local(Bytecode::Op::TypeofLocal const&);
void compile_jump(Bytecode::Op::Jump const&);
void compile_jump_conditional(Bytecode::Op::JumpConditional const&);
void compile_jump_nullish(Bytecode::Op::JumpNullish const&);
void compile_increment(Bytecode::Op::Increment const&);
void compile_decrement(Bytecode::Op::Decrement const&);
void compile_enter_unwind_context(Bytecode::Op::EnterUnwindContext const&);