Frame represents a program counter inside a stack frame. For historical reasons if Frame is interpreted as a uintptr its value represents the program counter + 1.
| 13 | // For historical reasons if Frame is interpreted as a uintptr |
| 14 | // its value represents the program counter + 1. |
| 15 | type Frame uintptr |
| 16 | |
| 17 | // pc returns the program counter for this frame; |
| 18 | // multiple frames may have the same PC value. |
no outgoing calls
no test coverage detected