ASTInterpreter2.jl icon indicating copy to clipboard operation
ASTInterpreter2.jl copied to clipboard

Problem with stepping over @pack macro from Parameters module

Open TsurHerman opened this issue 8 years ago • 1 comments

MWE:

d1= Dict("a"=>1,"b"=>2,"c"=>3)
f(d) = begin
    @unpack a,b,c = d
    a+b+c
end
@enter f(d1)

TsurHerman avatar Feb 04 '18 14:02 TsurHerman

Works with #37.

KristofferC avatar Jan 27 '19 14:01 KristofferC