until
Syntax
u[ntil] { line | module:line | function }
- line is a source code line in the current module.
- module:line is a source code line in a specific module.
- function is a function name.
Usage
The until
command
continues running your program until either the specified location
is reached, or the current stack frame returns. This can be used
to avoid stepping through a loop more than once.
Example
(fgldb) until addcount()