Searched refs:sourceFilesCache (Results 1 – 3 of 3) sorted by relevance
/third_party/typescript/src/compiler/ |
D | watchPublic.ts | 308 …const sourceFilesCache = new Map<string, HostFileInfo>(); // Cache that stores the sourc… constant 413 clearMap(sourceFilesCache, value => { 534 sourceFilesCache.delete(missingFilePath); 567 if (isFileMissingOnHost(sourceFilesCache.get(path))) { 575 const hostSourceFile = sourceFilesCache.get(path); 598 sourceFilesCache.set(path, false); 604 … sourceFilesCache.set(path, { sourceFile, version: sourceFile.version, fileWatcher }); 607 sourceFilesCache.set(path, false); 616 const hostSourceFile = sourceFilesCache.get(path); 620 sourceFilesCache.set(path, { version: false }); [all …]
|
/third_party/typescript/lib/ |
D | tsc.js | 107379 var sourceFilesCache = new ts.Map(); 107480 ts.clearMap(sourceFilesCache, function (value) { 107583 sourceFilesCache.delete(missingFilePath); 107608 if (isFileMissingOnHost(sourceFilesCache.get(path))) { 107614 var hostSourceFile = sourceFilesCache.get(path); 107632 sourceFilesCache.set(path, false); 107638 …sourceFilesCache.set(path, { sourceFile: sourceFile, version: sourceFile.version, fileWatcher: fil… 107641 sourceFilesCache.set(path, false); 107649 var hostSourceFile = sourceFilesCache.get(path); 107652 sourceFilesCache.set(path, { version: false }); [all …]
|
D | typingsInstaller.js | 129075 var sourceFilesCache = new ts.Map(); // Cache that stores the source file and version info 129185 ts.clearMap(sourceFilesCache, function (value) { 129295 sourceFilesCache.delete(missingFilePath); 129322 if (isFileMissingOnHost(sourceFilesCache.get(path))) { 129328 var hostSourceFile = sourceFilesCache.get(path); 129350 sourceFilesCache.set(path, false); 129356 …sourceFilesCache.set(path, { sourceFile: sourceFile, version: sourceFile.version, fileWatcher: fil… 129359 sourceFilesCache.set(path, false); 129367 var hostSourceFile = sourceFilesCache.get(path); 129371 sourceFilesCache.set(path, { version: false }); [all …]
|