ASTInterpreter2.jl
ASTInterpreter2.jl copied to clipboard
Debugger fails with function handle
function EvaluateAFunction(f)
return f(2);
end
x = EvaluateAFunction(x->sin(x))
@enter EvaluateAFunction(x->sin(x))
Running this code snippet in JuliaPro returns an error of AssertionError: arg isa Expr && arg.head == :call. Seems that the debugger can't deal with function handles as argument.
Works with #37