breakpoint-after ( word n -- )
Factor handbook » UI developer tools » UI walker » Setting breakpoints

Prev:breakpoint-if ( word quot: ( ... -- ... ? ) -- )
Next:break ( -- )


Vocabulary
tools.walker

Inputs
worda word
na number


Outputs
None

Word description
Annotates a word definition to enter the single stepper after the word has been called n times. Use reset to clear.

Examples
Break after calling sq 3 times:
USE: tools.walker \ sq 3 breakpoint-after


Definition