ContinueNode

data class ContinueNode(lineNumber: Int, loopStartLineNumber: Int) : LoopStatementNode

Continue node

Constructors

ContinueNode
Link copied to clipboard
fun ContinueNode(lineNumber: Int, loopStartLineNumber: Int)
Create empty Continue node

Functions

component1
Link copied to clipboard
operator fun component1(): Int
component2
Link copied to clipboard
operator fun component2(): Int
copy
Link copied to clipboard
fun copy(lineNumber: Int, loopStartLineNumber: Int): ContinueNode
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
loopStartLineNumber
Link copied to clipboard
val loopStartLineNumber: Int