(path, file, callback, pollingInterval, options, watchType)
| 123841 | ts.clearSharedExtendedConfigFileWatcher(path, sharedExtendedConfigFileWatchers); |
| 123842 | } |
| 123843 | function watchFilePath(path, file, callback, pollingInterval, options, watchType) { |
| 123844 | return watchFile(file, function (fileName, eventKind) { return callback(fileName, eventKind, path); }, pollingInterval, options, watchType); |
| 123845 | } |
| 123846 | function onSourceFileChange(fileName, eventKind, path) { |
| 123847 | updateCachedSystemWithFile(fileName, path, eventKind); |
| 123848 | // Update the source file cache |
no test coverage detected
searching dependent graphs…