stoplast
set a breakpoint in the procedure that most recently raised an exception
Calling Sequence
Parameters
Description
Examples
stoplast(statNum)
statNum
-
(optional) statement number at which to stop in the procedure
The stoplast function sets a breakpoint in the procedure that most recently raised an exception in the active Maple session. The next time that procedure is invoked, the debugger is activated (see stopat).
The stoplast function accepts one optional integer argument. If statNum is specified, stoplast stops at the specified statement in the procedure instead of at the beginning of the procedure. This argument is equivalent to the statNum argument to the stopat() function. For more information, see stopat.
Note: These examples illustrate the use of these debugger commands in Maple's command-line interface. In the standard (graphical) interface, the debugger runs in its own window, with controls for most of the common commands. See Interactive Maple Debugger for details.
foo := proc() error "test"; end proc;
foo ≔ procerrortestend proc
foo⁡
Error, (in foo) test
stoplast⁡
foo
foo:
1* error "test"
DBG> cont
See Also
Interactive Maple Debugger
stopat
stoperror
stopwhen
stopwhenif
Download Help Document