|
5.2.2 breakpoint
Syntax:
breakpoint( proc_name );
breakpoint( proc_name, line_no );
Purpose:
- sets a breakpoint at the beginning of the specified procedure or
at the given line.
Note: Line number 1 is the first line of a library (for
procedures from libraries), resp. the line with the { .
A line number of -1 removes all breakpoint from that procedure.
Example:
See
Source code debugger;
~.
|