| 456 | } |
| 457 | |
| 458 | ::String ExceptionStackFrame::format(bool inForDisplay) |
| 459 | { |
| 460 | #ifndef HXCPP_STACK_LINE |
| 461 | int line=0; |
| 462 | #endif |
| 463 | |
| 464 | const char *fileName = position->fileName; |
| 465 | const char *className = position->className; |
| 466 | const char *functionName = position->functionName; |
| 467 | |
| 468 | return FormatStack(fileName, className, functionName, line, inForDisplay); |
| 469 | } |
| 470 | |
| 471 | ::String ExceptionStackFrame::toDisplay() { return format(true); } |
| 472 | ::String ExceptionStackFrame::toString() { return format(false); } |
nothing calls this directly
no test coverage detected