[][src]Module boa::syntax::ast::node::iteration

Structs

Continue

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.

DoWhileLoop

The do...while statement creates a loop that executes a specified statement until the test condition evaluates to false.

ForLoop

The for statement creates a loop that consists of three optional expressions.

WhileLoop

The while statement creates a loop that executes a specified statement as long as the test condition evaluates to true.