showstop - Maple Help

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