(file, flags, options, detailInfo1, detailInfo2)
| 115648 | host.useCaseSensitiveFileNames(); |
| 115649 | } |
| 115650 | function createExcludeWatcherWithLogging(file, flags, options, detailInfo1, detailInfo2) { |
| 115651 | log("ExcludeWatcher:: Added:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo))); |
| 115652 | return { |
| 115653 | close: function () { return log("ExcludeWatcher:: Close:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo))); } |
| 115654 | }; |
| 115655 | } |
| 115656 | function createFileWatcherWithLogging(file, cb, flags, options, detailInfo1, detailInfo2) { |
| 115657 | log("FileWatcher:: Added:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo))); |
| 115658 | var watcher = triggerInvokingFactory.watchFile(file, cb, flags, options, detailInfo1, detailInfo2); |
nothing calls this directly
no test coverage detected
searching dependent graphs…