Clean up some additional exception handling with new stack handler

This commit is contained in:
Jason Turner
2012-05-18 16:37:39 -06:00
parent 897ad7007f
commit 08c153abea

View File

@@ -190,7 +190,6 @@ namespace chaiscript
}
}
try {
Boxed_Value fn = this->children[0]->eval(t_ss);
try {
@@ -204,14 +203,6 @@ namespace chaiscript
catch(detail::Return_Value &rv) {
return rv.retval;
}
catch(...) {
throw;
}
}
catch(exception::eval_error &) {
throw;
}
}
};
@@ -468,9 +459,7 @@ namespace chaiscript
catch(detail::Return_Value &rv) {
retval = rv.retval;
}
catch(...) {
throw;
}
if (this->children[i]->identifier == AST_Node_Type::Array_Call) {
for (size_t j = 1; j < this->children[i]->children.size(); ++j) {
try {