Skip to content

Proposal: Use Cassette Ext to add a "Break on Exception"Β #99

@mrufsvold

Description

@mrufsvold

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:

  1. Create a InfiltratorCtx Cassette context.
  2. Mark 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).
  3. For each function call in the user's code, wrap the whole function body in
try
    # body ...
catch e
    @infiltrate
end

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions