Product Documentation
Cadence SKILL Development Reference
Product Version IC23.1, June 2023

unbreakptMethod

unbreakptMethod( 
[ s_name [ @before | @after ] ] 
[ l_specializer ]
) 
=> t

Description

Removes breakpoints set on the specified method.

Arguments

s_name

The method for which the breakpoint has to be cleared.

l_specializer

List of specializers of the specified method. It can include @before, @after, and @around qualifiers.

Value Returned

t

List of removed breakpoints.

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

Debug Functions


Return to top
 ⠀
X