Overview
The debugger is a wrapper based on Keno Fischer’s DebuggerFramework and ASTInterpreter2.
Install
prerequisites
Install IntelliJ IDEA (or other JetBrains IntelliJ platform IDEs such as PyCharm / WebStorm / GoLand / and even Android Studio ).
Install Julia plugin and setup
open Settings | Plugins | Browse repositories
( named marketplace
after 2018.3 ), install Julia plugin, and create a Julia project.
packages
(v1.0) pkg> add DebuggerFramework#master
(v1.0) pkg> add ASTInterpreter2#master
(v1.0) pkg> add JSON
(#master is required)
Debug
write a function with @enter macro call
and put a breakpoint, press debug button.
more info at original page: Julia Debugger Document | zxj5470