We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ef2e93 commit 77bcaccCopy full SHA for 77bcacc
stack.go
@@ -164,6 +164,12 @@ func (c Call) Format(s fmt.State, verb rune) {
164
}
165
166
167
+// PC returns the program counter for this call frame; multiple frames may
168
+// have the same PC value.
169
+func (c Call) PC() uintptr {
170
+ return c.pc
171
+}
172
+
173
// name returns the import path qualified name of the function containing the
174
// call.
175
func (c Call) name() string {
0 commit comments