Property definitions

nitc :: parser_prod $ AMethidExpr :: init_amethidexpr
	init init_amethidexpr (
		n_expr: nullable AExpr,
		n_id: nullable AMethid
	)
	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:7482,2--7491,4