Property definitions

nitc :: parser_prod $ ACallrefExpr :: init_acallrefexpr
	init init_acallrefexpr (
		n_amp: nullable TAmp,
		n_expr: nullable AExpr,
		n_qid: nullable AQid,
		n_args: nullable AExprs
	)
	do
		_n_amp = n_amp.as(not null)
		n_amp.parent = self
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
		_n_qid = n_qid.as(not null)
		n_qid.parent = self
		_n_args = n_args.as(not null)
		n_args.parent = self
	end
src/parser/parser_prod.nit:5437,2--5452,4