Binary Expression
data class BinaryExpression(val left: Expression, val operator: BinaryOperator, val right: Expression) : Expression
Binary Expression. Takes an operator and combines two operand Expressions.
Parameters
left
The left Expression operand of the binary expression.
right
The right Expression operand of the binary expression.
operator
The BinaryOperator that applies to the two operands.