Property definitions

nitc :: parser_prod $ AUplusExpr :: init_auplusexpr
	init init_auplusexpr (
		n_op: nullable TPlus,
		n_expr: nullable AExpr
	)
	do
		_n_op = n_op.as(not null)
		n_op.parent = self
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
	end
src/parser/parser_prod.nit:5052,2--5061,4