(acquisFile string, withPos bool, idx int)
| 306 | } |
| 307 | |
| 308 | func formatConfigLocation(acquisFile string, withPos bool, idx int) string { |
| 309 | ret := acquisFile |
| 310 | |
| 311 | if withPos { |
| 312 | ret += " (position " + strconv.Itoa(idx) + ")" |
| 313 | } |
| 314 | |
| 315 | return ret |
| 316 | } |
| 317 | |
| 318 | // sourcesFromFile reads and parses one acquisition file into DataSources. |
| 319 | func sourcesFromFile( |
no outgoing calls
no test coverage detected
searching dependent graphs…