AssertionNode
class AssertionNode(val condition: ExpressionNode, val sourceLocation: SourceLocation, val comment: String? = null) : StatementNode
Asserting that a condition is true, and failing otherwise.
Constructors
Link copied to clipboard
fun AssertionNode(condition: ExpressionNode, sourceLocation: SourceLocation, comment: String? = null)