data class Div : Expression, Binary<Div, Expression>
Division: A / B
<init> |
Div(left: Expression, right: Expression)
Division: A / B |
left |
val left: Expression
The child of this element which is the root of the left subtree. |
right |
val right: Expression
The child of this element which is the root of the right subtree. |
node |
open val node: Expression
Expression is also the node in the tree, so |
toString |
fun toString(): String
Return string which uniquely represents this expression and can be parsed to create an equivalent object. |