Class ArrayExpression

All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>, NodeMetaDataHandler

public class ArrayExpression
extends Expression
Represents an array object construction. One of:
  • a fixed size array (e.g. new String[3] or new Integer[2][3])
  • an array with an explicit initializer (e.g. new String[]&#123; "foo", "bar" &#125;)