| 446 | |
| 447 | |
| 448 | ExceptionStackFrame::ExceptionStackFrame(const StackFrame &inFrame) |
| 449 | { |
| 450 | // It is safe to use the pointer in 331+ |
| 451 | position = inFrame.position; |
| 452 | |
| 453 | #ifdef HXCPP_STACK_LINE |
| 454 | line = inFrame.lineNumber; |
| 455 | #endif |
| 456 | } |
| 457 | |
| 458 | ::String ExceptionStackFrame::format(bool inForDisplay) |
| 459 | { |
nothing calls this directly
no outgoing calls
no test coverage detected