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

LibJS/JIT: Compile the Await instruction

This commit is contained in:
Simon Wanner 2023-11-02 21:59:54 +01:00 committed by Andreas Kling
parent 4671520c0a
commit c810d4784e
2 changed files with 7 additions and 1 deletions

View file

@ -1724,6 +1724,11 @@ void Compiler::compile_yield(Bytecode::Op::Yield const& op)
compile_continuation(op.continuation(), false);
}
void Compiler::compile_await(Bytecode::Op::Await const& op)
{
compile_continuation(op.continuation(), true);
}
void Compiler::jump_to_exit()
{
m_assembler.jump(m_exit_label);