Property definitions

nitc :: parser_prod $ AOrangeExpr :: init_aorangeexpr
	init init_aorangeexpr (
		n_obra: nullable TObra,
		n_expr: nullable AExpr,
		n_dotdot: nullable TDotdot,
		n_expr2: nullable AExpr,
		n_cbra: nullable TObra,
		n_annotations: nullable AAnnotations
	)
	do
		_n_obra = n_obra.as(not null)
		n_obra.parent = self
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
		_n_dotdot = n_dotdot.as(not null)
		n_dotdot.parent = self
		_n_expr2 = n_expr2.as(not null)
		n_expr2.parent = self
		_n_cbra = n_cbra.as(not null)
		n_cbra.parent = self
		_n_annotations = n_annotations
		if n_annotations != null then n_annotations.parent = self
	end
src/parser/parser_prod.nit:6243,2--6264,4