-
Notifications
You must be signed in to change notification settings - Fork 24
Description
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:
- Create a
InfiltratorCtxCassette context. - Mark
Baseand all modules from dependencies of the active environment as not overdubbable (kinda like marking most modules with "Compiled Mode" in the regular debugger). - For each function call in the user's code, wrap the whole function body in
try
# body ...
catch e
@infiltrate
endAll 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.