We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6eaf051 + 1533989 commit 2eac908Copy full SHA for 2eac908
src/JuliaInterpreter.jl
@@ -937,7 +937,7 @@ function maybe_step_through_wrapper!(stack)
937
last = stack[1].code.code.code[end-1]
938
isexpr(last, :(=)) && (last = last.args[2])
939
stack1 = stack[1]
940
- is_kw = stack1.code.scope isa Method && startswith(String(Base.unwrap_unionall(stack1.code.scope.sig).parameters[1].name.name), "#kw")
+ is_kw = stack1.code.scope isa Method && startswith(String(Base.unwrap_unionall(Base.unwrap_unionall(stack1.code.scope.sig).parameters[1]).name.name), "#kw")
941
if is_kw || isexpr(last, :call) && any(x->x==SlotNumber(1), last.args)
942
# If the last expr calls #self# or passes it to an implementation method,
943
# this is a wrapper function that we might want to step through
0 commit comments