Removing copies of Rhino code

git-svn-id: svn://10.0.0.236/trunk@29406 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
1999-04-27 06:23:48 +00:00
parent aed1ccc028
commit dda3ccddad
14 changed files with 0 additions and 3698 deletions

View File

@@ -1,18 +0,0 @@
/* -*- Mode: java; tab-width: 8 -*-
* Copyright © 1998 Netscape Communications Corporation,
* All Rights Reserved.
*/
import java.util.*;
public class FunctionNode extends Node {
public FunctionNode(String name, Node left, Node right) {
super(TokenStream.FUNCTION, left, right, name);
}
public String getFunctionName() {
return getString();
}
}