CollectionLiteralExpression

data class CollectionLiteralExpression(val expressions: List<Node.Expression>, val supplement: NodeSupplement = NodeSupplement()) : Node.Expression

AST node that represents a collection literal expression. The node corresponds to KtCollectionLiteralExpression.

Constructors

Link copied to clipboard
constructor(expressions: List<Node.Expression>, supplement: NodeSupplement = NodeSupplement())

Properties

Link copied to clipboard

list of element expressions.

Link copied to clipboard
open override val supplement: NodeSupplement

Supplemental data for the node.