(p string)
| 912 | } |
| 913 | |
| 914 | func isFilesystemPath(p string) bool { |
| 915 | return p == "." || strings.HasPrefix(p, "./") || strings.HasPrefix(p, "/") |
| 916 | } |
| 917 | |
| 918 | func outputLines(output []byte) []string { |
| 919 | lines := strings.TrimSuffix(string(output), "\n") |
no outgoing calls
no test coverage detected