| 339 | #ifdef HXCPP_STACK_TRACE // { |
| 340 | |
| 341 | void StackContext::tracePosition( ) |
| 342 | { |
| 343 | StackFrame *frame = mStackFrames[mStackFrames.size()-1]; |
| 344 | #ifdef HXCPP_STACK_LINE |
| 345 | DBGLOG("%s::%s : %d\n", frame->position->className, frame->position->functionName, frame->lineNumber); |
| 346 | #else |
| 347 | DBGLOG("%s::%s\n", frame->position->className, frame->position->functionName); |
| 348 | #endif |
| 349 | } |
| 350 | |
| 351 | void StackContext::getCurrentCallStackAsStrings(Array<String> result, bool skipLast) |
| 352 | { |
no test coverage detected