| 278 | } |
| 279 | |
| 280 | type fastWalker struct { |
| 281 | rootDir string |
| 282 | ch chan fastWalkInfo |
| 283 | limit int32 |
| 284 | cur *int32 |
| 285 | wg *sync.WaitGroup |
| 286 | } |
| 287 | |
| 288 | // fastWalkWithExcludeFiles walks the contents of a dir, respecting |
| 289 | // include/exclude patterns. |
nothing calls this directly
no outgoing calls
no test coverage detected