Frame is a frame in stack traces.
| 43 | |
| 44 | // Frame is a frame in stack traces. |
| 45 | type Frame struct { |
| 46 | PC uint64 |
| 47 | Fn string |
| 48 | File string |
| 49 | Line int |
| 50 | } |
| 51 | |
| 52 | const ( |
| 53 | // Special P identifiers: |
nothing calls this directly
no outgoing calls
no test coverage detected