| 54 | } |
| 55 | |
| 56 | void OnStackFrame(wxStackFrame const& frame) override final { |
| 57 | if (!fp.good()) return; |
| 58 | |
| 59 | fp << agi::format("%03u - %p: %s", frame.GetLevel(), frame.GetAddress(), frame.GetName().utf8_str().data()); |
| 60 | if (frame.HasSourceLocation()) |
| 61 | fp << agi::format(" on %s:%u", frame.GetFileName().utf8_str().data(), frame.GetLine()); |
| 62 | |
| 63 | fp << "\n"; |
| 64 | } |
| 65 | }; |
| 66 | #endif |
| 67 | } |
nothing calls this directly
no test coverage detected