| 361 | } |
| 362 | |
| 363 | void StackContext::getCurrentExceptionStackAsStrings(Array<String> result) |
| 364 | { |
| 365 | int size = mExceptionStack.size(); |
| 366 | |
| 367 | for (int i = 0; i < size; i++) |
| 368 | { |
| 369 | result->push(mExceptionStack[i].toString()); |
| 370 | } |
| 371 | } |
| 372 | |
| 373 | void StackContext::beginCatch(bool inAll) |
| 374 | { |
no test coverage detected