ObjectLiteralExpression

data class ObjectLiteralExpression(val declaration: Node.Declaration.ObjectDeclaration, val supplement: NodeSupplement = NodeSupplement()) : Node.Expression

AST node that represents an object literal expression. The node corresponds to KtObjectLiteralExpression.

Constructors

Link copied to clipboard
constructor(declaration: Node.Declaration.ObjectDeclaration, supplement: NodeSupplement = NodeSupplement())

Properties

Link copied to clipboard

object declaration of the expression.

Link copied to clipboard
open override val supplement: NodeSupplement

Supplemental data for the node.