You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Breakpoint Hit: gg(x) in Main at /mnt/c/Users/Kristoffer/Debugging/file.jl:2 function gg(x)
z = :foo
➧ b = "fdsf"
q = Expr(:call, sin, 1)
print(x)
Vars: x, z
Commands: CC (Continue), SI (Step In), SN (Step Next), SO (Step Out), XX (Abort)
iron>z
ERROR: UndefVarError: foo not defined
Consider
The problem is that
:foo
gets evaluated but it needs to beQuoteNode
wrapped. See https://github.com/JuliaDebug/Debugger.jl/blob/8a64fd8ef98edf8fdc486900466274a83f9e3b8a/src/Debugger.jl#L72.The text was updated successfully, but these errors were encountered: