| 532 | |
| 533 | |
| 534 | Array<String> __hxcpp_get_call_stack(bool inSkipLast) |
| 535 | { |
| 536 | Array<String> result = Array_obj<String>::__new(); |
| 537 | |
| 538 | #ifdef HXCPP_STACK_TRACE |
| 539 | hx::StackContext *ctx = hx::StackContext::getCurrent(); |
| 540 | ctx->getCurrentCallStackAsStrings(result,inSkipLast); |
| 541 | #endif |
| 542 | return result; |
| 543 | } |
| 544 | |
| 545 | |
| 546 | Array<String> __hxcpp_get_exception_stack() |
nothing calls this directly
no test coverage detected