(host, path)
| 129129 | } |
| 129130 | ts.tryFileExists = tryFileExists; |
| 129131 | function tryDirectoryExists(host, path) { |
| 129132 | return tryAndIgnoreErrors(function () { return ts.directoryProbablyExists(path, host); }) || false; |
| 129133 | } |
| 129134 | ts.tryDirectoryExists = tryDirectoryExists; |
| 129135 | function tryAndIgnoreErrors(cb) { |
| 129136 | try { |
nothing calls this directly
no test coverage detected