MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / format

Method format

src/hx/Debug.cpp:458–469  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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); }

Callers

nothing calls this directly

Calls 1

FormatStackFunction · 0.85

Tested by

no test coverage detected