Property definitions

nitc $ AArrayExpr :: defaultinit
# A literal array. eg. `[x,y,z]`
class AArrayExpr
	super AExpr

	# The opening bracket `[`
	var n_obra: TObra is writable, noinit

	# The elements of the array
	var n_exprs = new ANodes[AExpr](self)

	# The type of the element of the array (if any)
	var n_type: nullable AType = null is writable

	# The closing bracket `]`
	var n_cbra: TCbra is writable, noinit
end
src/parser/parser_nodes.nit:2595,1--2610,3