(ext)
| 43612 | return tryExtension(".json" /* Extension.Json */); |
| 43613 | } |
| 43614 | function tryExtension(ext) { |
| 43615 | var path = tryFile(candidate + ext, onlyRecordFailures, state); |
| 43616 | return path === undefined ? undefined : { path: path, ext: ext }; |
| 43617 | } |
| 43618 | } |
| 43619 | /** Return the file if it exists. */ |
| 43620 | function tryFile(fileName, onlyRecordFailures, state) { |
no test coverage detected
searching dependent graphs…