(tn string)
| 392 | } |
| 393 | |
| 394 | func lastPathComponent(tn string) string { |
| 395 | // Strip the path prefix. |
| 396 | if i := strings.LastIndexByte(tn, '/'); i >= 0 { |
| 397 | tn = tn[i+1:] |
| 398 | } |
| 399 | return tn |
| 400 | } |
| 401 | |
| 402 | func reverseExceptionOrder(ex []sentry.Exception) { |
| 403 | for i := 0; i < len(ex)/2; i++ { |
no outgoing calls
no test coverage detected
searching dependent graphs…