func runtime.Caller
10 uses
runtime (current package)
extern.go#L302: func Caller(skip int) (pc uintptr, file string, line int, ok bool) {
flag
flag.go#L508: _, file, line, ok := runtime.Caller(2)
go.uber.org/mock/gomock
controller.go#L298: if _, file, line, ok := runtime.Caller(skip + 1); ok {
go/types
errors.go#L23: if _, file, line, ok := runtime.Caller(1); ok {
google.golang.org/grpc
server.go#L707: _, 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#L180: pc, _, _, _ := runtime.Caller(2)
log
log.go#L219: _, file, line, ok = runtime.Caller(calldepth)
net/http
server.go#L2894: _, file, line, ok := runtime.Caller(3)