mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 21:52:44 +00:00

Some new, some old filres copiedfrom Rhino to form start of prototyping environment for Project Brenda
19 lines
385 B
Java
19 lines
385 B
Java
/* -*- 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();
|
|
}
|
|
|
|
}
|