Skip to content

Commit fd45431

Browse files
committed
Update handle_err in utils.jl to new API
1 parent 21c5d64 commit fd45431

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function evaluate_limited!(stack, frame::JuliaStackFrame, nstmts::Int, pc::Julia
5858
do_assignment!(frame, lhs, rhs)
5959
new_pc = pc + 1
6060
catch err
61-
new_pc = handle_err(frame, err)
61+
new_pc = handle_err(stack, frame, pc, err)
6262
end
6363
nstmts = refnstmts[]
6464
elseif stmt.head == :(=) && isexpr(stmt.args[2], :call) && !isa(stack, Compiled)
@@ -69,7 +69,7 @@ function evaluate_limited!(stack, frame::JuliaStackFrame, nstmts::Int, pc::Julia
6969
do_assignment!(frame, stmt.args[1], rhs)
7070
new_pc = pc + 1
7171
catch err
72-
new_pc = handle_err(frame, err)
72+
new_pc = handle_err(stack, frame, pc, err)
7373
end
7474
nstmts = refnstmts[]
7575
elseif stmt.head == :thunk

0 commit comments

Comments
 (0)