| 616 | |
| 617 | |
| 618 | void __hxt_new_string(void* obj, int inSize) |
| 619 | { |
| 620 | #ifdef HXCPP_STACK_TRACE |
| 621 | hx::StackContext *stack = hx::StackContext::getCurrent(); |
| 622 | if (stack->mTelemetry) |
| 623 | stack->mTelemetry->HXTAllocation(obj, inSize, (const char *)"String"); |
| 624 | #endif |
| 625 | } |
| 626 | void __hxt_new_array(void* obj, int inSize) |
| 627 | { |
| 628 | #ifdef HXCPP_STACK_TRACE |
no test coverage detected