nitc :: ARangeExpr :: defaultinit
# A literal range, open or closed
abstract class ARangeExpr
super AExpr
# The left (lower) element of the range
var n_expr: AExpr is writable, noinit
# The `..`
var n_dotdot: TDotdot is writable, noinit
# The right (upper) element of the range
var n_expr2: AExpr is writable, noinit
end
src/parser/parser_nodes.nit:2559,1--2571,3