# Not a part of SeaMonkey

git-svn-id: svn://10.0.0.236/trunk@29435 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
1999-04-27 16:22:20 +00:00
parent b4f4376836
commit 7d4dfd4ad3
4 changed files with 60 additions and 106 deletions

View File

@@ -0,0 +1,7 @@
class RelationalNode extends BinaryNode {
RelationalNode(String aOp, ExpressionNode aLeft, ExpressionNode aRight)
{
super(aOp, aLeft, aRight);
}
}