stoplast - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


stoplast

set a breakpoint in the procedure that most recently raised an exception

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

stoplast(statNum)

Parameters

statNum

-

(optional) statement number at which to stop in the procedure

Description

• 

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.

Examples

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;

fooprocerrortestend proc

(1)

foo

Error, (in foo) test

stoplast

foo

(2)

foo

 foo:

    1*    error "test"

 

 DBG> cont

Error, (in foo) test

See Also

Interactive Maple Debugger

stopat

stoperror

stopwhen

stopwhenif