mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 19:59:17 +00:00
LibJS: Fix build after merging CallFrame removal and finally fixes
This commit is contained in:
parent
ada5027163
commit
5cb127819c
Notes:
sideshowbarker
2024-07-16 23:17:55 +09:00
Author: https://github.com/awesomekling
Commit: 5cb127819c
1 changed files with 2 additions and 2 deletions
|
@ -531,13 +531,13 @@ void Interpreter::catch_exception(Operand dst)
|
|||
|
||||
void Interpreter::restore_scheduled_jump()
|
||||
{
|
||||
m_scheduled_jump = call_frame().previously_scheduled_jumps.take_last();
|
||||
m_scheduled_jump = vm().running_execution_context().previously_scheduled_jumps.take_last();
|
||||
}
|
||||
|
||||
void Interpreter::leave_finally()
|
||||
{
|
||||
reg(Register::exception()) = {};
|
||||
m_scheduled_jump = call_frame().previously_scheduled_jumps.take_last();
|
||||
m_scheduled_jump = vm().running_execution_context().previously_scheduled_jumps.take_last();
|
||||
}
|
||||
|
||||
void Interpreter::enter_object_environment(Object& object)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue