BreakNode

class BreakNode(jumpLabel: JumpLabelNode?, sourceLocation: SourceLocation, comment: String?) : StatementNode

Breaking out of a loop.

Parameters

jumpLabel

Label of the loop to break out of. A null value refers to the innermost loop.

Constructors

BreakNode
Link copied to clipboard
fun BreakNode(jumpLabel: JumpLabelNode?, sourceLocation: SourceLocation, comment: String? = null)

Functions

toDocument
Link copied to clipboard
override fun toDocument(): Document

Properties

comment
Link copied to clipboard
open override val comment: String? = null
jumpLabel
Link copied to clipboard
val jumpLabel: JumpLabelNode?
sourceLocation
Link copied to clipboard
open override val sourceLocation: SourceLocation