This class implements a debugger for Pnuts interpreter.
It is used through pnuts -d command.
Commands:
stop at [FILE:]LINENO
Stop execution at the LINENO
stop in FUNC[:NARGS]
Stop execution when FUNC is called.
When NARGS is specified, stop when FUNC with NARGS is called.
clear
Clear all breakpoints
cont
Continue execution
trace
Toggle trace mode
trace function [FUNC]
Toggle function call trace mode
step [NUM]
Single step NUM lines. |