| 784 | hx::StackContext *ctx; |
| 785 | hx::StackFrame *frame; |
| 786 | CppiaStackFrame(hx::StackContext *inCtx, hx::StackPosition *inPosition) |
| 787 | { |
| 788 | ctx = inCtx; |
| 789 | frame = (hx::StackFrame *)ctx->stackAlloc(sizeof(hx::StackFrame)); |
| 790 | frame->position = inPosition; |
| 791 | #ifdef HXCPP_DEBUGGER |
| 792 | frame->variables = 0; |
| 793 | frame->catchables = 0; |
| 794 | #endif |
| 795 | inCtx->pushFrame(frame); |
| 796 | } |
| 797 | ~CppiaStackFrame() |
| 798 | { |
| 799 | ctx->popFrame(frame); |
nothing calls this directly
no test coverage detected