Property definitions

nitc $ AMethidExpr :: defaultinit
# A special expression that encapsulates a method identifier
# Can only be found in special construction like arguments of annotations.
class AMethidExpr
	super AExpr

	# The receiver
	var n_expr: AExpr is writable, noinit

	# The encapsulated method identifier
	var n_id: AMethid is writable, noinit
end
src/parser/parser_nodes.nit:2829,1--2839,3