EscapeStringEntry

data class EscapeStringEntry(    val text: String,     val supplement: NodeSupplement = NodeSupplement()) : Node.Expression.StringLiteralExpression.StringEntry, Node.SimpleTextNode

AST node that represents an escape string entry that starts with backslash. The node corresponds to KtEscapeStringTemplateEntry.

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 of this entry starting with backslash.