WhileLoopNode
class WhileLoopNode(val guard: ExpressionNode, val body: BlockNode, val jumpLabel: JumpLabelNode?, val sourceLocation: SourceLocation, val comment: String? = null) : LoopNode
Executing a statement repeatedly as long as a condition is true.
Constructors
Link copied to clipboard
fun WhileLoopNode(guard: ExpressionNode, body: BlockNode, jumpLabel: JumpLabelNode?, sourceLocation: SourceLocation, comment: String? = null)