ASTInterpreter2.jl
ASTInterpreter2.jl copied to clipboard
Problem with stepping over @pack macro from Parameters module
MWE:
d1= Dict("a"=>1,"b"=>2,"c"=>3)
f(d) = begin
@unpack a,b,c = d
a+b+c
end
@enter f(d1)
Works with #37.