VoidNode

data class VoidNode(lineNumber: Int) : ExpressionNode

Void node

Represents a void value e.g. from a void function

Constructors

VoidNode
Link copied to clipboard
fun VoidNode(lineNumber: Int)
Create empty Void node

Functions

component1
Link copied to clipboard
operator fun component1(): Int
copy
Link copied to clipboard
fun copy(lineNumber: Int): VoidNode
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