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
{{ message }}
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
using Gallium
function justafunc()
try
A = note("12345")
catch
println("Error")
end
println("After try-catch.")
end
#Gallium.breakpoint(justafunc)
justafunc()
The function note() is not defined. It is there just to test try-catch statement.
Running my code without debugging, try-catch handles the 'not defined' error and I get the following output:
Error
After try-catch.
But if I debug using Gallium the execution of my code stops with the following error: UndefVarError: note not defined
Is this a limitation of Gallium or am I doing something wrong?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm trying to debug this simple code:
The function
note()
is not defined. It is there just to test try-catch statement.Running my code without debugging, try-catch handles the 'not defined' error and I get the following output:
But if I debug using Gallium the execution of my code stops with the following error:
UndefVarError: note not defined
Is this a limitation of Gallium or am I doing something wrong?
The text was updated successfully, but these errors were encountered: