(file)
| 115585 | } |
| 115586 | return false; |
| 115587 | function hasSourceFile(file) { |
| 115588 | return realProgram ? |
| 115589 | !!realProgram.getSourceFileByPath(file) : |
| 115590 | builderProgram ? |
| 115591 | builderProgram.getState().fileInfos.has(file) : |
| 115592 | !!ts.find(program, function (rootFile) { return toPath(rootFile) === file; }); |
| 115593 | } |
| 115594 | } |
| 115595 | ts.isIgnoredFileFromWildCardWatching = isIgnoredFileFromWildCardWatching; |
| 115596 | function isBuilderProgram(program) { |
no test coverage detected
searching dependent graphs…