IfNode
fun IfNode(guard: ExpressionNode, thenBranch: BlockNode, elseBranch: BlockNode, sourceLocation: SourceLocation, comment: String? = null)
Parameters
thenBranch
Statement to execute if the guard is true.
elseBranch
Statement to execute if the guard is false.