Skip to content

Commit c51f729

Browse files
committed
propagate interp context to lookup
1 parent 1627733 commit c51f729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/signatures.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function signature(interp::Interpreter, frame::Frame, @nospecialize(stmt), pc::I
5252
stmt = pc_expr(frame, pc)
5353
end
5454
isa(stmt, Expr) || return nothing, pc
55-
sigsv = lookup(frame, stmt.args[2])::SimpleVector
55+
sigsv = lookup(interp, frame, stmt.args[2])::SimpleVector
5656
sigt = signature(sigsv)
5757
return sigt, lastpc
5858
end

0 commit comments

Comments
 (0)