ConstructorClassParent
data class ConstructorClassParent(val type: Node.Type.SimpleType, val lPar: Node.Keyword.LPar, val arguments: List<Node.ValueArgument>, val rPar: Node.Keyword.RPar, val supplement: NodeSupplement = NodeSupplement()) : Node.Declaration.ClassOrObject.ClassParent
ClassParent node that represents constructor invocation. The node corresponds to KtSuperTypeCallEntry.
Constructors
Link copied to clipboard
constructor(type: Node.Type.SimpleType, lPar: Node.Keyword.LPar, arguments: List<Node.ValueArgument>, rPar: Node.Keyword.RPar, supplement: NodeSupplement = NodeSupplement())
Properties
Link copied to clipboard
list of value arguments of the parent call.
Link copied to clipboard
always null.
Link copied to clipboard
left parenthesis of the value arguments if exists, otherwise null.
Link copied to clipboard
right parenthesis of the value arguments if exists, otherwise null.
Link copied to clipboard
Supplemental data for the node.
Link copied to clipboard
type of the parent.