Property definitions

nitc :: parser_prod $ AAttrExpr :: init_aattrexpr
	init init_aattrexpr (
		n_expr: nullable AExpr,
		n_id: nullable TAttrid
	)
	do
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
		_n_id = n_id.as(not null)
		n_id.parent = self
	end
src/parser/parser_prod.nit:5204,2--5213,4