Changes for try/catch handling

git-svn-id: svn://10.0.0.236/trunk@27801 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
1999-04-16 02:54:56 +00:00
parent b99ddd43a7
commit 382f120d73
5 changed files with 120 additions and 10 deletions

View File

@@ -1,11 +1,29 @@
class StackValue {
StackValue(double d)
StackValue(double v)
{
dbl = d;
d = v;
}
double dbl;
StackValue(int v)
{
i = v;
}
StackValue(String v)
{
s = v;
}
StackValue(PostorderNodeIterator v)
{
p = v;
}
double d;
PostorderNodeIterator p;
String s;
int i;
}