StringNode

data class StringNode(lineNumber: Int, value: String) : ExpressionNode

String node

Represents a string value

Constructors

StringNode
Link copied to clipboard
fun StringNode(lineNumber: Int, value: String)
Create empty String node

Functions

component1
Link copied to clipboard
operator fun component1(): Int
component2
Link copied to clipboard
operator fun component2(): String
copy
Link copied to clipboard
fun copy(lineNumber: Int, value: String): StringNode
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

lineNumber
Link copied to clipboard
open override val lineNumber: Int
value
Link copied to clipboard
val value: String