Latest changes

git-svn-id: svn://10.0.0.236/trunk@30781 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
1999-05-07 22:18:39 +00:00
parent 8f068486d8
commit 2f5eb038e6
6 changed files with 222 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import java.util.Hashtable;
class Environment {
JSStack theStack = new JSStack();
Hashtable theGlobals = new Hashtable();
String print()
{
StringBuffer result = new StringBuffer("Globals contents :\n");
result.append(theGlobals.toString());
result.append("\nStack Top = " + theStack.size());
return result.toString();
}
}