Infiltrator.jl
Infiltrator.jl copied to clipboard
No-overhead breakpoints in Julia
Needed for stacktrace and local variables.
I don't seem to be able to scroll or search back through the history of commands I've typed in previous `infil>` REPLs. It would be really helpful to be able...
I want to write this issue down, even if I don't have an MWE at the moment, so my gripe doesn't get lost in the slack hole. When using `NLSolve`...
would be convenient if docstrings could be accessed in the usual way with `?` at the infiltrator prompt. not sure how hard this would be to implement though.
Consider including the following script with `includet` ```julia using Infiltrator function test() ϕ = "what" @infiltrate sin(ϕ) end ``` At first, this works as expected. Then, I cause a parsing...
I will try to update this with an explicit example. When using `@infiltrate`, I frequently experience an error like: `ERROR: cannot declare #1#2 constant; it already has a value Stacktrace:...
Julia supports the syntax `using Foo: bar as baz`. When importing names in this way, however, they are not accessible from within the infiltrator REPL. MWE: ```julia using Infiltrator module...
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...
First, thanks a lot for Infiltrator! It is extremely helpful and has a very intuitive interface. Only the documentation is not yet as user friendly as the package. Below you...
It would be nice to: - conditionally exfiltrate - selectively exfiltrate - accumulate exfiltrations (such that multiple calls to exfiltrate (e.g. in a loop) will not override the results, but...