Mozilla/mozilla/js/js2/java/Environment.java
rogerl%netscape.com 7448fc1fe9 Moved from stack to inline execution.
git-svn-id: svn://10.0.0.236/trunk@33132 18797224-902f-48f8-a5cc-f745e15eee43
1999-05-28 19:00:48 +00:00

16 lines
279 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();
}
}