class ArithmeticNode extends BinaryNode { ArithmeticNode(String aOp, ExpressionNode aLeft, ExpressionNode aRight) { super(aOp, aLeft, aRight); } }