func runtime.Caller
9 uses
runtime (current package)
extern.go#L205: func Caller(skip int) (pc uintptr, file string, line int, ok bool) {
github.com/golang/mock/gomock
controller.go#L308: if _, file, line, ok := runtime.Caller(skip + 1); ok {
google.golang.org/grpc
server.go#L622: _, file, line, _ := runtime.Caller(1)
gotest.tools/v3/internal/source
source.go#L32: _, filename, line, ok := runtime.Caller(stackIndex + 1)
update.go#L34: _, filename, line, ok := runtime.Caller(stackIndex + 1)
internal/reflectlite
value.go#L171: pc, _, _, _ := runtime.Caller(2)
log
log.go#L182: _, file, line, ok = runtime.Caller(calldepth)
reflect
value.go#L176: pc, _, _, _ := runtime.Caller(2)
value.go#L187: pc, _, _, _ := runtime.Caller(3)