mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
c6788416d7
New.
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);
|
|
}
|
|
} |