Debug.jl
Debug.jl copied to clipboard
Prototype interactive debugger for Julia
Installed v0.5 via homebrew, and added Debug via Pkg.add("Debug"). Ran some existing plotting code that was fine under 0.46 and got the following error: INFO: Precompiling module Debug. WARNING: symbol...
@toivoh, I was wondering what the plans for this package are. Are you planning to support this through v0.5? Have you had a look at [Gallium](https://github.com/Keno/Gallium.jl) ?
This has been driving me nuts - in some situations the debugged function would disappear. After a ton of trial end error it turned out the culprit was Logging.jl, namely...
There should be a way to mark e.g. a method as debugable, without instrumenting it per default. Such a method would become instrumented once the user steps into an invocation...
Ideas: ``` finish: step out of function where: print current location list: list surrounding code ```
Consider the following code in badprofile.jl ``` julia using IProfile using Debug @iprofile begin # add the debug macro makes the function disappear if inside an iprofile block @debug function...
[PackageEvaluator.jl](https://github.com/IainNZ/PackageEvaluator.jl) is a script that runs nightly. It attempts to load all Julia packages and run their tests (if available) on both the stable version of Julia (0.3) and the...
Perhaps it would be possible to interface `Debug.jl` with [DDD](http://www.gnu.org/software/ddd/) (or some other general purpose debugger GUI?) This might improve the debugging experience considerably.
According to the Julia performance manual, if blocks and begin blocks do not introduce new scope. However, the Debug package alters this fact. When running testfunction() outside the debugger, the...