LibJS: Propagate finalizers into nested try-catch blocks without them

This commit is contained in:
Hendiadyoin1 2024-04-11 00:25:54 +02:00 committed by Andreas Kling
commit 301a1fc763
Notes: sideshowbarker 2024-07-17 18:08:55 +09:00
3 changed files with 59 additions and 2 deletions

View file

@ -276,6 +276,8 @@ public:
return Operand(Operand::Type::Constant, m_constants.size() - 1);
}
UnwindContext const* current_unwind_context() const { return m_current_unwind_context; }
private:
VM& m_vm;