(p string)
| 974 | } |
| 975 | |
| 976 | func isFilesystemPath(p string) bool { |
| 977 | return p == "." || strings.HasPrefix(p, "./") || strings.HasPrefix(p, "/") |
| 978 | } |
| 979 | |
| 980 | func outputLines(output []byte) []string { |
| 981 | lines := strings.TrimSuffix(string(output), "\n") |
no outgoing calls
no test coverage detected