Property definitions

nitc :: parser_prod $ AParExpr :: init_aparexpr
	init init_aparexpr (
		n_opar: nullable TOpar,
		n_expr: nullable AExpr,
		n_cpar: nullable TCpar,
		n_annotations: nullable AAnnotations
	)
	do
		_n_opar = n_opar.as(not null)
		n_opar.parent = self
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
		_n_cpar = n_cpar.as(not null)
		n_cpar.parent = self
		_n_annotations = n_annotations
		if n_annotations != null then n_annotations.parent = self
	end
src/parser/parser_prod.nit:6948,2--6963,4