BinOp constructor
Constructs a binary mathematical operation with the operator and operands.
Parameters:
value: String representation of the operator ("+", "-", "*", "/", "%")left: The left operand expressionright: The right operand expression
Implementation
BinOp(String value, Node left, Node right)
: super(MathOp.fromString(value), [left, right]);