ForLoopNode

fun ForLoopNode(initialize: SimpleStatementNode, guard: ExpressionNode, update: SimpleStatementNode, body: BlockNode, jumpLabel: JumpLabelNode?, sourceLocation: SourceLocation, comment: String? = null)

Parameters

initialize

Initializer for loop variables.

guard

Loop until this becomes false.

update

Update loop variables after each iteration.