The debugger / Debugger commands |
The until command continues running the program until the specified location is reached.
until [ { function | [ module: ] line } ]
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.
(fgldb) until addcount()