Property definitions

nitc :: parser_prod $ ACrangeExpr :: init_acrangeexpr
	init init_acrangeexpr (
		n_obra: nullable TObra,
		n_expr: nullable AExpr,
		n_dotdot: nullable TDotdot,
		n_expr2: nullable AExpr,
		n_cbra: nullable TCbra,
		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:6149,2--6170,4