showstop - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


showstop

display information about breakpoints, watchpoints, and error watchpoints

 

Calling Sequence

Description

Examples

Calling Sequence

showstop()

Description

• 

The showstop function displays a report of all functions containing breakpoints, all watchpoints, and all error watchpoints currently set.

Examples

f := proc(x) local y; if x < 2 then y := x; print(y^2) end if; print(-x); x^3 end proc:

stopatf

f

(1)

stopatf&comma;2

f

(2)

stopatint

f&comma;int

(3)

stopwhenf&comma;y

f&comma;y

(4)

stopwhenDigits

Digits&comma;f&comma;y

(5)

stopwhenifanswer&comma;42

Digits&comma;answer&comma;f&comma;y

(6)

stoperror`division by zero`

division by zero

(7)

showstop


Breakpoints in:
   f
   int

Watched variables:
   Digits
   answer = 42
   y in procedure f

Watched errors:
   "division by zero"

See Also

debugger

showstat

stopat

stoperror

stopwhen

stopwhenif