SuperExpression

data class SuperExpression(val typeArgument: Node.TypeArgument?, val label: Node.Expression.NameExpression?, val supplement: NodeSupplement = NodeSupplement()) : Node.Expression, Node.Expression.WithLabel

AST node that represents a super expression. The node corresponds to KtSuperExpression or KtConstructorDelegationReferenceExpression whose text is "super".

Constructors

Link copied to clipboard
constructor(typeArgument: Node.TypeArgument?, label: Node.Expression.NameExpression?, supplement: NodeSupplement = NodeSupplement())

Properties

Link copied to clipboard

label of this expression if exists, otherwise null.

Link copied to clipboard
open override val supplement: NodeSupplement

Supplemental data for the node.

Link copied to clipboard

type argument if exists, otherwise null.