mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibJS: Propagate finalizers into nested try-catch blocks without them
This commit is contained in:
parent
865e651a7d
commit
301a1fc763
Notes:
sideshowbarker
2024-07-17 18:08:55 +09:00
Author: https://github.com/Hendiadyoin1
Commit: 301a1fc763
Pull-request: https://github.com/SerenityOS/serenity/pull/23927
Reviewed-by: https://github.com/ADKaster
3 changed files with 59 additions and 2 deletions
|
@ -2510,8 +2510,13 @@ Bytecode::CodeGenerationErrorOr<Optional<Bytecode::Operand>> TryStatement::gener
|
|||
if (m_finalizer)
|
||||
generator.end_boundary(Bytecode::Generator::BlockBoundaryType::ReturnToFinally);
|
||||
if (m_handler) {
|
||||
if (!m_finalizer)
|
||||
unwind_context.emplace(generator, OptionalNone());
|
||||
if (!m_finalizer) {
|
||||
auto const* parent_unwind_context = generator.current_unwind_context();
|
||||
if (parent_unwind_context)
|
||||
unwind_context.emplace(generator, parent_unwind_context->finalizer());
|
||||
else
|
||||
unwind_context.emplace(generator, OptionalNone());
|
||||
}
|
||||
unwind_context->set_handler(handler_target.value());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue