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:
@@ -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;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user