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