pc returns the program counter for this frame; multiple frames may have the same PC value.
()
| 17 | // pc returns the program counter for this frame; |
| 18 | // multiple frames may have the same PC value. |
| 19 | func (f Frame) pc() uintptr { return uintptr(f) - 1 } |
| 20 | |
| 21 | // file returns the full path to the file that contains the |
| 22 | // function for this Frame's pc. |