nitc :: AInitExpr :: defaultinit
# A call to the `init` constructor.
# Note: because `init` is a keyword and not a `TId`, the explicit call to init cannot be a `ACallFormExpr`.
class AInitExpr
super ASendExpr
# The `init` keyword
var n_kwinit: TKwinit is writable, noinit
# The arguments of the init
var n_args: AExprs is writable, noinit
end
src/parser/parser_nodes.nit:2494,1--2504,3