(name string, err error)
| 188 | } |
| 189 | |
| 190 | func errorf(name string, err error) { |
| 191 | fmt.Fprintf(os.Stderr, "%s: %s\n", path.Base(name), err.Error()) |
| 192 | } |
| 193 | |
| 194 | func errorAndExit(name string, err error) { |
| 195 | fmt.Fprintf(os.Stderr, "%s: %s\n", path.Base(name), err.Error()) |
no test coverage detected
searching dependent graphs…