showstop
display information about breakpoints, watchpoints, and error watchpoints
Calling Sequence
Description
Examples
showstop()
The showstop function displays a report of all functions containing breakpoints, all watchpoints, and all error watchpoints currently set.
f := proc(x) local y; if x < 2 then y := x; print(y^2) end if; print(-x); x^3 end proc:
stopat⁡f
f
stopat⁡f,2
stopat⁡int
f,int
stopwhen⁡f,y
f,y
stopwhen⁡Digits
Digits,f,y
stopwhenif⁡answer,42
Digits,answer,f,y
stoperror⁡`division by zero`
division by zero
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
Download Help Document