If Statement Node
data class IfStatementNode(lineNumber: Int, endLineNumber: Int, scope: Int, condition: ExpressionNode, statements: List<StatementNode>, elifs: List<ElifNode>, elseBlock: ElseNode) : StatementBlock
Content copied to clipboard
If statement node
Constructors
IfStatementNode
Link copied to clipboard
fun IfStatementNode(lineNumber: Int, endLineNumber: Int, scope: Int, condition: ExpressionNode, statements: List<StatementNode>, elifs: List<ElifNode> = emptyList(), elseBlock: ElseNode)
Content copied to clipboard
Create empty If 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
component6
Link copied to clipboard
component7
Link copied to clipboard
copy
Link copied to clipboard
fun copy(lineNumber: Int, endLineNumber: Int, scope: Int, condition: ExpressionNode, statements: List<StatementNode>, elifs: List<ElifNode> = emptyList(), elseBlock: ElseNode): IfStatementNode
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