pc returns the program counter for this frame; multiple frames may have the same PC value.
()
| 74 | // pc returns the program counter for this frame; |
| 75 | // multiple frames may have the same PC value. |
| 76 | func (f frame) pc() uintptr { return uintptr(f) - 1 } |
| 77 | |
| 78 | // file returns the full path to the file that contains the |
| 79 | // function for this Frame's pc. |