7 lines
167 B
Java
7 lines
167 B
Java
class ArithmeticNode extends BinaryNode {
|
|
|
|
ArithmeticNode(String aOp, ExpressionNode aLeft, ExpressionNode aRight)
|
|
{
|
|
super(aOp, aLeft, aRight);
|
|
}
|
|
} |