Mozilla/mozilla/js/js2/java/Environment.java
rogerl%netscape.com 17cd7246b8 Function calling begun.
git-svn-id: svn://10.0.0.236/trunk@34703 18797224-902f-48f8-a5cc-f745e15eee43
1999-06-11 00:21:26 +00:00

17 lines
304 B
Java

import java.util.Hashtable;
class Environment {
JSObject scope = new JSObject("globals");
String print()
{
StringBuffer result = new StringBuffer("Globals contents :\n");
result.append(scope.toString());
return result.toString();
}
JSValue resultValue;
}