Property definitions

nitc :: parser_prod $ ARangeExpr :: init_arangeexpr
	init init_arangeexpr (
		n_expr: nullable AExpr,
		n_expr2: nullable AExpr,
		n_annotations: nullable AAnnotations
	)
	do
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
		_n_expr2 = n_expr2.as(not null)
		n_expr2.parent = self
		_n_annotations = n_annotations
		if n_annotations != null then n_annotations.parent = self
	end
src/parser/parser_prod.nit:6094,2--6106,4