-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
Proposal: Use Cassette Ext to add a "Break on Exception" #99
Comments
My thinking evolved on this while I was working on a PoC. I think every individual statement should be wrapped in I also realized that this could be achieved with the That would be less flexible than Cassette, but far less finicky since we could intervene before IR. |
I'd be happy to see an external package do this (the AST transform injecting a bunch of |
I love this idea! |
I was thinking recently that it would be nice if, every time I hit an error, I could drop into the REPL and figure out what was going on. I think this could be done using Cassette.jl and Infiltrator.jl.
My design idea is:
InfiltratorCtx
Cassette context.Base
and all modules from dependencies of the active environment as not overdubbable (kinda like marking most modules with "Compiled Mode" in the regular debugger).All of this functionality could be wrapped in a package extension so that it doesn't change the light-weightness of Infiltrator.jl unless the user imports Cassette (or maybe some kind of wrapper package so that regular users don't need to directly install Cassette).
One obvious tradeoff is that, when this mode is turned on and off, all of the user's functions would need to be recompiled. That's not aaaawesome, but it's the same tradeoff as adding
@infiltrate
manually, so I don't see it as a major problem as long as the user is made aware of the cost.Would this be something you'd be open to a PR for? Or do you think functionality like this is best left to a completely separate package?
P.S. I want to keep the discussion focused on this narrower goal, but if we are already working with Cassette, we could also add an option to capture deep copies of the arguments of each function as we descend the stack and allow the user to "rewind" to frames further up the stack. This wouldn't allow
@continue
in these other frames, but it would add more "debugger" type features to the toolkit.The text was updated successfully, but these errors were encountered: