| |||
| Home > RealView Debugger Keywords > Keywords listed by function > Flow control keywords | |||
Table 4.2 contains a summary of the conditional statement keywords.
Table 4.2. Flow control keywords
| Description | Macro |
|---|---|
Exits from the current loop. | break on break |
Ignores the remaining statements in the current loop and executes the next iteration of the loop. | continue on continue |
Executes a given statement one or more times until an expression evaluates to False. | do-while on do-while |
Executes a statement a given number of times. | for on for |
Evaluates an expression and executes the following statement or statements until the expression evaluates to False. | while on while |