BreakNode

class BreakNode(val jumpLabel: JumpLabelNode?, val sourceLocation: SourceLocation, val comment: String? = null) : 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

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

Functions

Link copied to clipboard
override fun toDocument(): Document

Properties

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