(i, j int)
| 115 | func (v ByName) Len() int { return len(v) } |
| 116 | func (v ByName) Swap(i, j int) { v[i], v[j] = v[j], v[i] } |
| 117 | func (v ByName) Less(i, j int) bool { return v[i].Name() < v[j].Name() } |
| 118 | |
| 119 | // findFiles recursively finds all the file paths in the given directory tree. |
| 120 | // They are added to the given map as keys. Values will be safe function names |