nitc :: AForExpr :: defaultinit
# A `for` statement
class AForExpr
super AExpr
super ALabelable
# The `for` keyword
var n_kwfor: TKwfor is writable, noinit
# The list of groups to iterate
var n_groups = new ANodes[AForGroup](self)
# The `do` keyword
var n_kwdo: TKwdo is writable, noinit
# The body of the loop
var n_block: nullable AExpr = null is writable
end
src/parser/parser_nodes.nit:2033,1--2049,3