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:
stopatf
f
stopatf,2
stopatint
f,int
stopwhenf,y
f,y
stopwhenDigits
Digits,f,y
stopwhenifanswer,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