(fileName)
| 115891 | var directoryExistsCache = new ts.Map(); |
| 115892 | var sourceFileCache = new ts.Map(); |
| 115893 | var readFileWithCache = function (fileName) { |
| 115894 | var key = toPath(fileName); |
| 115895 | var value = readFileCache.get(key); |
| 115896 | if (value !== undefined) |
| 115897 | return value !== false ? value : undefined; |
| 115898 | return setReadFileCache(key, fileName); |
| 115899 | }; |
| 115900 | var setReadFileCache = function (key, fileName) { |
| 115901 | var newValue = originalReadFile.call(host, fileName); |
| 115902 | readFileCache.set(key, newValue !== undefined ? newValue : false); |
nothing calls this directly
no test coverage detected
searching dependent graphs…