* Add child directory watcher to the new ChildDirectoryWatcher list
(childWatcher)
| 6704 | * Add child directory watcher to the new ChildDirectoryWatcher list |
| 6705 | */ |
| 6706 | function addChildDirectoryWatcher(childWatcher) { |
| 6707 | (newChildWatches || (newChildWatches = [])).push(childWatcher); |
| 6708 | } |
| 6709 | } |
| 6710 | function isIgnoredPath(path, options) { |
| 6711 | return ts.some(ts.ignoredPaths, function (searchPath) { return isInPath(path, searchPath); }) || |
no test coverage detected