| 544 | |
| 545 | |
| 546 | Array<String> __hxcpp_get_exception_stack() |
| 547 | { |
| 548 | Array<String> result = Array_obj<String>::__new(); |
| 549 | |
| 550 | #ifdef HXCPP_STACK_TRACE |
| 551 | hx::StackContext *ctx = hx::StackContext::getCurrent(); |
| 552 | ctx->getCurrentExceptionStackAsStrings(result); |
| 553 | #endif |
| 554 | |
| 555 | return result; |
| 556 | } |
| 557 | |
| 558 | void __hxcpp_set_critical_error_handler(Dynamic inHandler) |
| 559 | { |
nothing calls this directly
no test coverage detected