unbreakptMethod
unbreakptMethod( [s_name[@before| @after ] ] [l_specializer])=>t
Description
Removes breakpoints set on the specified method.
Arguments
|
List of specializers of the specified method. It can include |
Value Returned
Examples
unbreakptMethod(S_name)
; removes the breakpoint on "S_name" function, behaves the same way as unbreakpt()
unbreakptMethod(S_name nil)
; removes the breakpoint on "generic" method of S_name.
unbreakptMethod(S_name @after (classA t))
; removes the breakpoint on "@after" method specialized on (classA t) of "S_name"
unbreakptMethod(S_name (classB t))
; removes the breakpoint on primary method specialized on (classB t) of "S_name".
unbreakptMethod()
; when specified without arguments, returns t
Related Topics
Return to top