(host, directoryName)
| 129117 | } |
| 129118 | ts.probablyUsesSemicolons = probablyUsesSemicolons; |
| 129119 | function tryGetDirectories(host, directoryName) { |
| 129120 | return tryIOAndConsumeErrors(host, host.getDirectories, directoryName) || []; |
| 129121 | } |
| 129122 | ts.tryGetDirectories = tryGetDirectories; |
| 129123 | function tryReadDirectory(host, path, extensions, exclude, include) { |
| 129124 | return tryIOAndConsumeErrors(host, host.readDirectory, path, extensions, exclude, include) || ts.emptyArray; |
nothing calls this directly
no test coverage detected