# NOT A PART OF SEAMONKEY IN ANY WAY

Some new, some old filres copiedfrom Rhino to form start of prototyping
environment for Project Brenda


git-svn-id: svn://10.0.0.236/trunk@27571 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
1999-04-15 18:24:00 +00:00
parent 6d738a5392
commit a63de07fef
16 changed files with 3643 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import java.util.Stack;
class JSStack {
Stack stack = new Stack();
void push(StackValue value)
{
stack.push(value);
}
StackValue pop()
{
return (StackValue)stack.pop();
}
}