Changes for try/catch handling

This commit is contained in:
rogerl@netscape.com
1999-04-16 02:54:56 +00:00
parent 4d9b383818
commit 500afc1787
5 changed files with 120 additions and 10 deletions
+21 -3
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;
}