We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
show
Debugger will crash when the show method throw an exception.
For example, the following code will make a crash on debugger.
struct Test end Base.show(io::IO, self::Test) = print(io, wrong_code()) # note: `wrong_code` is not defined a = Test()
The text was updated successfully, but these errors were encountered:
julia> @enter Test(); In Test() at REPL[5]:1 1 1 ─ %1 = $(QuoteNode(Test)) 2 │ %2 = %new(%1) >3 └── return %2 About to run: <printing error...> 1|debug> n julia>
where is the crash?
Sorry, something went wrong.
Sorry, my mistake.
No problem
No branches or pull requests
Debugger will crash when the
show
method throw an exception.For example, the following code will make a crash on debugger.
The text was updated successfully, but these errors were encountered: