# 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

@@ -22,6 +22,16 @@ class UnaryNode extends ExpressionNode {
return result.toString();
}
String getOperator()
{
return op;
}
ExpressionNode getChild()
{
return child;
}
protected ExpressionNode child;
protected String op;