While Statement Node
data class WhileStatementNode(lineNumber: Int, endLineNumber: Int, scope: Int, condition: ExpressionNode, statements: List<StatementNode>) : LoopNode
Content copied to clipboard
While statement node
Constructors
WhileStatementNode
Link copied to clipboard
fun WhileStatementNode(lineNumber: Int, endLineNumber: Int, scope: Int, condition: ExpressionNode, statements: List<StatementNode>)
Content copied to clipboard
Create empty While statement node
Functions
component1
Link copied to clipboard
component2
Link copied to clipboard
component3
Link copied to clipboard
component4
Link copied to clipboard
component5
Link copied to clipboard
copy
Link copied to clipboard
fun copy(lineNumber: Int, endLineNumber: Int, scope: Int, condition: ExpressionNode, statements: List<StatementNode>): WhileStatementNode
Content copied to clipboard
Properties
condition
Link copied to clipboard
endLineNumber
Link copied to clipboard
lineNumber
Link copied to clipboard
statements
Link copied to clipboard