until

The until command continues running the program until the specified location is reached.

Syntax

until [ { function | [ module: ] line } ]
  1. function is a function name.
  2. module is a specific source file.
  3. 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()