Searched refs:filesByName (Results 1 – 3 of 3) sorted by relevance
/third_party/typescript/src/compiler/ |
D | program.ts | 1136 const filesByName = new Map<string, SourceFile | false | undefined>(); constant 1252 …missingFilePaths = arrayFrom(mapDefinedIterator(filesByName.entries(), ([path, file]) => file === … 1308 getFilesByNameMap: () => filesByName, 1904 filesByName.set(newSourceFile.path, newSourceFile); 1909 filesByName.set(path, oldFile); 1919 filesByName.set(path, filesByName.get(oldFile.path)); 2016 … return sourceFile ? sourceFile.text : filesByName.has(path) ? undefined : host.readFile(path); 2106 return filesByName.get(path) || undefined; 2943 if (filesByName.has(path)) { 2944 const file = filesByName.get(path); [all …]
|
/third_party/typescript/lib/ |
D | typingsInstaller.js | 121595 var filesByName = new ts.Map(); 121704 … missingFilePaths = ts.arrayFrom(ts.mapDefinedIterator(filesByName.entries(), function (_a) { 121754 getFilesByNameMap: function () { return filesByName; }, 122306 filesByName.set(newSourceFile.path, newSourceFile); 122311 filesByName.set(path, oldFile); 122321 filesByName.set(path, filesByName.get(oldFile.path)); 122397 … return sourceFile ? sourceFile.text : filesByName.has(path) ? undefined : host.readFile(path); 122464 return filesByName.get(path) || undefined; 123217 if (filesByName.has(path)) { 123218 var file_2 = filesByName.get(path); [all …]
|
D | tsc.js | 100865 var filesByName = new ts.Map(); 100960 … missingFilePaths = ts.arrayFrom(ts.mapDefinedIterator(filesByName.entries(), function (_a) { 101005 getFilesByNameMap: function () { return filesByName; }, 101458 filesByName.set(newSourceFile.path, newSourceFile); 101463 filesByName.set(path, oldFile); 101472 filesByName.set(path, filesByName.get(oldFile.path)); 101542 … return sourceFile ? sourceFile.text : filesByName.has(path) ? undefined : host.readFile(path); 101598 return filesByName.get(path) || undefined; 102265 if (filesByName.has(path)) { 102266 var file_2 = filesByName.get(path); [all …]
|