init init_aasnotnullexpr (
n_expr: nullable AExpr,
n_kwas: nullable TKwas,
n_opar: nullable TOpar,
n_kwnot: nullable TKwnot,
n_kwnull: nullable TKwnull,
n_cpar: nullable TCpar
)
do
_n_expr = n_expr.as(not null)
n_expr.parent = self
_n_kwas = n_kwas.as(not null)
n_kwas.parent = self
_n_opar = n_opar
if n_opar != null then n_opar.parent = self
_n_kwnot = n_kwnot.as(not null)
n_kwnot.parent = self
_n_kwnull = n_kwnull.as(not null)
n_kwnull.parent = self
_n_cpar = n_cpar
if n_cpar != null then n_cpar.parent = self
end
src/parser/parser_prod.nit:7097,2--7118,4