(host, path)
| 129125 | } |
| 129126 | ts.tryReadDirectory = tryReadDirectory; |
| 129127 | function tryFileExists(host, path) { |
| 129128 | return tryIOAndConsumeErrors(host, host.fileExists, path); |
| 129129 | } |
| 129130 | ts.tryFileExists = tryFileExists; |
| 129131 | function tryDirectoryExists(host, path) { |
| 129132 | return tryAndIgnoreErrors(function () { return ts.directoryProbablyExists(path, host); }) || false; |
no test coverage detected