ContextReceiver

data class ContextReceiver(val lPar: Node.Keyword.LPar, val receiverTypes: List<Node.Type>, val rPar: Node.Keyword.RPar, val supplement: NodeSupplement = NodeSupplement()) : Node

AST node that represents a context receiver. The node corresponds to KtContextReceiverList.

Constructors

Link copied to clipboard
constructor(lPar: Node.Keyword.LPar, receiverTypes: List<Node.Type>, rPar: Node.Keyword.RPar, supplement: NodeSupplement = NodeSupplement())

Properties

Link copied to clipboard

left parenthesis of the receiver types.

Link copied to clipboard

list of receiver types.

Link copied to clipboard

right parenthesis of the receiver types.

Link copied to clipboard
open override val supplement: NodeSupplement

Supplemental data for the node.