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
I tested Debugger using Julia1.3 and Julia 1.2. I use command n to debug line by line. When it encounter the line using JSON.jl package. Debugger.jl running a long time and halted there, and can not go to the next line. The demo code is as follows.
`
using JSON
function f()
f_path = raw"C:\test.json"
txt = read( f_path , String )
vessel_char = JSON.parse( txt ) ## stopped here, and vs code has no response
return c
end
d = f()
`
The text was updated successfully, but these errors were encountered:
When I use the compiled mode of the debugger.jl, it can pass through. The file is very small about several kb and I found a lot of people talked about the speed. If I use interpreted mode, the laptop keeps running and halted there.
I tested Debugger using Julia1.3 and Julia 1.2. I use command
n
to debug line by line. When it encounter the line using JSON.jl package. Debugger.jl running a long time and halted there, and can not go to the next line. The demo code is as follows.`
using JSON
function f()
f_path = raw"C:\test.json"
txt = read( f_path , String )
vessel_char = JSON.parse( txt ) ## stopped here, and vs code has no response
return c
end
d = f()
`
The text was updated successfully, but these errors were encountered: