NameExpression

data class NameExpression(val text: String, val supplement: NodeSupplement = NodeSupplement()) : Node.Expression, Node.Expression.BinaryExpression.BinaryOperator

AST node that represents a name expression, i.e. an identifier. The node corresponds to KtValueArgumentName, KtSimpleNameExpression or PsiElement whose elementType is IDENTIFIER.

Constructors

Link copied to clipboard
constructor(text: String, supplement: NodeSupplement = NodeSupplement())

Properties

Link copied to clipboard
open override val supplement: NodeSupplement

Supplemental data for the node.

Link copied to clipboard
open override val text: String

string representation of the name expression.