mirror of
https://github.com/janet-lang/janet
synced 2025-10-23 19:57:40 +00:00
Lots of work on improving debugging.
doc macro can take no arguments and print out all bindings. Fix an issues with the vm skipping over a breakpoint in some situations. Add examples/debugger.janet for proof of concept debugger.
This commit is contained in:
8
examples/debug.janet
Normal file
8
examples/debug.janet
Normal file
@@ -0,0 +1,8 @@
|
||||
# Load this file and run (myfn) to see the debugger
|
||||
|
||||
(defn myfn
|
||||
[]
|
||||
(debug)
|
||||
(for i 0 10 (print i)))
|
||||
|
||||
(debug/fbreak myfn 3)
|
Reference in New Issue
Block a user