Searched refs:fileInfos (Results 1 – 9 of 9) sorted by relevance
/third_party/typescript/src/testRunner/unittests/tsbuild/ |
D | helpers.ts | 210 fileInfos: MapLike<ReadableProgramBuildInfoFileInfo>; 219 fileInfos: MapLike<string>; 232 const fileInfos: ReadableProgramBundleEmitBuildInfo["fileInfos"] = {}; constant 233 …buildInfo.program?.fileInfos?.forEach((fileInfo, index) => fileInfos[toFileName(index + 1 as Progr… 236 fileInfos 240 const fileInfos: ReadableProgramMultiFileEmitBuildInfo["fileInfos"] = {}; constant 241 …buildInfo.program?.fileInfos?.forEach((fileInfo, index) => fileInfos[toFileName(index + 1 as Progr… 246 fileInfos: buildInfo.program.fileInfos ? fileInfos : undefined!, 399 …incrementalReadableBuildInfo?.program?.fileInfos as ReadableProgramMultiFileEmitBuildInfo["fileInf… 400 … cleanReadableBuildInfo?.program?.fileInfos as ReadableProgramMultiFileEmitBuildInfo["fileInfos"], [all …]
|
/third_party/typescript/src/compiler/ |
D | builder.ts | 202 state.fileInfos.forEach((info, sourceFilePath) => { 209 !(oldInfo = oldState!.fileInfos.get(sourceFilePath)) || 217 …References && forEachKey(newReferences, path => !state.fileInfos.has(path) && oldState!.fileInfos.… 244 …eOldState && forEachEntry(oldState!.fileInfos, (info, sourceFilePath) => info.affectsGlobalScope &… 551 const newSignature = Debug.checkDefined(state.fileInfos.get(path)).signature; 563 if (!state.fileInfos.get(filePath)?.affectsGlobalScope) return false; 795 fileInfos: readonly ProgramBuildInfoFileInfo[]; property 810 fileInfos: readonly string[]; property 834 const fileInfos: string[] = []; constant 839 fileInfos.push(sourceFile.version); [all …]
|
D | builderState.ts | 17 fileInfos: ESMap<Path, BuilderState.FileInfo>; property 266 const fileInfos = new Map<Path, FileInfo>(); constant 279 … useOldState ? oldState!.fileInfos.get(sourceFile.resolvedPath)?.signature : undefined : 297 fileInfos.set(sourceFile.resolvedPath, { 306 fileInfos, 366 state.fileInfos.get(path)!.signature = signature; 385 const info = state.fileInfos.get(sourceFile.resolvedPath)!;
|
D | watchUtilities.ts | 551 builderProgram.getState().fileInfos.has(file) :
|
/third_party/typescript/src/testRunner/unittests/tscWatch/ |
D | incremental.ts | 160 assert.equal(state.fileInfos.size, 3, "FileInfo size"); 161 assert.deepEqual(state.fileInfos.get(libFile.path as Path), { 167 assert.deepEqual(state.fileInfos.get(file1.path as Path), { 173 assert.deepEqual(state.fileInfos.get(file2.path as Path), {
|
D | helpers.ts | 353 const info = state.fileInfos.get(path);
|
/third_party/typescript/tests/baselines/reference/tsbuild/noEmit/ |
D | syntax-errors-with-incremental.js | 158 {"program":{"fileNames":["../lib/lib.d.ts","./a.ts"],"fileInfos":[{"version":"3858781397-/// <refer… property
|
/third_party/typescript/lib/ |
D | typingsInstaller.js | 120502 builderProgram.getState().fileInfos.has(file) : 124708 var fileInfos = new ts.Map(); 124720 …useOldState ? (_b = oldState.fileInfos.get(sourceFile.resolvedPath)) === null || _b === void 0 ? v… 124738 fileInfos.set(sourceFile.resolvedPath, { 124746 fileInfos: fileInfos, 124784 state.fileInfos.get(path).signature = signature; 124797 var info = state.fileInfos.get(sourceFile.resolvedPath); 125072 state.fileInfos.forEach(function (info, sourceFilePath) { 125078 !(oldInfo = oldState.fileInfos.get(sourceFilePath)) || 125086 …rEachKey(newReferences, function (path) { return !state.fileInfos.has(path) && oldState.fileInfos.… [all …]
|
D | tsc.js | 99889 builderProgram.getState().fileInfos.has(file) : 103613 var fileInfos = new ts.Map(); 103623 …useOldState ? (_b = oldState.fileInfos.get(sourceFile.resolvedPath)) === null || _b === void 0 ? v… 103640 fileInfos.set(sourceFile.resolvedPath, { 103648 fileInfos: fileInfos, 103680 state.fileInfos.get(path).signature = signature; 103689 var info = state.fileInfos.get(sourceFile.resolvedPath); 103895 state.fileInfos.forEach(function (info, sourceFilePath) { 103899 !(oldInfo = oldState.fileInfos.get(sourceFilePath)) || 103903 …rEachKey(newReferences, function (path) { return !state.fileInfos.has(path) && oldState.fileInfos.… [all …]
|