| 472 | // either. |
| 473 | |
| 474 | inline void pushFrame(StackFrame *inFrame) |
| 475 | { |
| 476 | #ifdef HXCPP_PROFILER |
| 477 | if (mProfiler) |
| 478 | profSample(mProfiler,this); |
| 479 | #endif |
| 480 | |
| 481 | #ifdef HXCPP_TELEMETRY |
| 482 | if (mTelemetry) |
| 483 | tlmSampleEnter(mTelemetry,inFrame); |
| 484 | #endif |
| 485 | |
| 486 | mIsUnwindingException = false; |
| 487 | mStackFrames.push(inFrame); |
| 488 | |
| 489 | #ifdef HXCPP_DEBUGGER |
| 490 | if (sExecutionTrace!=exeTraceOff) |
| 491 | tracePosition(); |
| 492 | #endif |
| 493 | } |
| 494 | |
| 495 | inline void popFrame(StackFrame *inFrame) |
| 496 | { |
no test coverage detected