| 493 | } |
| 494 | |
| 495 | inline void popFrame(StackFrame *inFrame) |
| 496 | { |
| 497 | #ifdef HXCPP_TELEMETRY |
| 498 | if (mTelemetry) |
| 499 | tlmSampleExit(mTelemetry); |
| 500 | #endif |
| 501 | |
| 502 | if (mIsUnwindingException) |
| 503 | { |
| 504 | // Use default operator= |
| 505 | mExceptionStack.push( *inFrame ); |
| 506 | } |
| 507 | |
| 508 | mStackFrames.pop_back(); |
| 509 | } |
| 510 | |
| 511 | void getCurrentCallStackAsStrings(Array<String> result, bool skipLast); |
| 512 | void getCurrentExceptionStackAsStrings(Array<String> result); |
no test coverage detected