Module iteration
boa::syntax::ast::node
The continue statement terminates execution of the statements in the current iteration of the current or labeled loop, and continues execution of the loop with the next iteration.
continue
The do...while statement creates a loop that executes a specified statement until the test condition evaluates to false.
do...while
The for statement creates a loop that consists of three optional expressions.
for
The while statement creates a loop that executes a specified statement as long as the test condition evaluates to true.
while
true