Property definitions

nitc :: parser_prod $ ANamedargExpr :: init_anamedargexpr
	init init_anamedargexpr (
		n_id: nullable TId,
		n_assign: nullable TAssign,
		n_expr: nullable AExpr
	)
	do
		_n_id = n_id.as(not null)
		n_id.parent = self
		_n_assign = n_assign.as(not null)
		n_assign.parent = self
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
	end
src/parser/parser_prod.nit:7356,2--7368,4