(skip int)
| 314 | } |
| 315 | |
| 316 | func callersSkip(skip int) []uintptr { |
| 317 | callers := make([]uintptr, MaxStackDepth) |
| 318 | length := runtime.Callers(skip+2, callers[:]) |
| 319 | return callers[:length] |
| 320 | } |
| 321 | |
| 322 | func readableStackTrace(callers []uintptr) string { |
| 323 | var result bytes.Buffer |
no test coverage detected
searching dependent graphs…