gecko-dev/js/js2/java/Environment.java

16 lines
279 B
Java
Raw Normal View History

1999-05-07 22:18:39 +00:00
import java.util.Hashtable;
class Environment {
JSObject scope = new JSObject("globals");
1999-05-28 19:00:48 +00:00
1999-05-07 22:18:39 +00:00
String print()
{
StringBuffer result = new StringBuffer("Globals contents :\n");
result.append(scope.toString());
1999-05-07 22:18:39 +00:00
return result.toString();
}
}