(searchPath, trimPath string)
| 958 | } |
| 959 | |
| 960 | func newSourceReader(searchPath, trimPath string) *sourceReader { |
| 961 | return &sourceReader{ |
| 962 | searchPath, |
| 963 | trimPath, |
| 964 | make(map[string][]string), |
| 965 | make(map[string]error), |
| 966 | } |
| 967 | } |
| 968 | |
| 969 | func (reader *sourceReader) fileError(path string) error { |
| 970 | return reader.errors[path] |
no outgoing calls
no test coverage detected
searching dependent graphs…