Property definitions

nitc $ ANewExpr :: defaultinit
# An explicit instantiation. eg `new T`
class ANewExpr
	super AExpr

	# The `new` keyword
	var n_kwnew: TKwnew is writable, noinit

	# The `type` keyword
	var n_type: AType is writable, noinit

	# The name of the named-constructor, if any
	var n_qid: nullable AQid = null is writable

	# The arguments of the `new`
	var n_args: AExprs is writable, noinit
end
src/parser/parser_nodes.nit:2373,1--2388,3