Home
last modified time | relevance | path

Searched refs:buildInfoPath (Results 1 – 15 of 15) sorted by relevance

/third_party/typescript/src/testRunner/unittests/tsbuild/
Dhelpers.ts228 …function generateBuildInfoProgramBaseline(sys: System, buildInfoPath: string, buildInfo: BuildInfo…
293 …sys.writeFile(`${buildInfoPath}.readable.baseline.txt`, JSON.stringify(result, /*replacer*/ undefi…
330 const buildInfoPath = getTsBuildInfoEmitOutputFilePath(options); constant
331 if (!buildInfoPath || !sys.writtenFiles!.has(toPathWithSystem(sys, buildInfoPath))) return;
332 if (!sys.fileExists(buildInfoPath)) return;
334 …const buildInfo = getBuildInfo(buildInfoPath, (originalReadCall || sys.readFile).call(sys, buildIn…
335 …if (!buildInfo) return sys.writeFile(`${buildInfoPath}.baseline.txt`, "Error reading valid buildin…
336 generateBuildInfoProgramBaseline(sys, buildInfoPath, buildInfo);
349 sys.writeFile(`${buildInfoPath}.baseline.txt`, text);
/third_party/typescript/src/compiler/
DtsbuildPublic.ts1475 const buildInfoPath = getTsBuildInfoEmitOutputFilePath(options)!; constant
1476 const existing = getBuildInfoCacheEntry(state, buildInfoPath, resolvedConfigPath);
1485 path: toPath(state, buildInfoPath),
1493 …function getBuildInfoCacheEntry(state: SolutionBuilderState, buildInfoPath: string, resolvedConfig…
1494 const path = toPath(state, buildInfoPath);
1499 …function getBuildInfo(state: SolutionBuilderState, buildInfoPath: string, resolvedConfigPath: Reso…
1500 const path = toPath(state, buildInfoPath);
1505 const value = state.readFileWithCache(buildInfoPath);
1506 const buildInfo = value ? ts.getBuildInfo(buildInfoPath, value) : undefined;
1573 const buildInfoPath = getTsBuildInfoEmitOutputFilePath(project.options); constant
[all …]
DwatchPublic.ts11 const buildInfoPath = getTsBuildInfoEmitOutputFilePath(compilerOptions); constant
12 if (!buildInfoPath) return undefined;
16 buildInfo = host.getBuildInfo(buildInfoPath, compilerOptions.configFilePath);
19 const content = host.readFile(buildInfoPath);
21 buildInfo = getBuildInfo(buildInfoPath, content);
24 return createBuilderProgramUsingProgramBuildInfo(buildInfo.program, buildInfoPath, host);
Demitter.ts47 const buildInfoPath = getTsBuildInfoEmitOutputFilePath(options); constant
48 … if (buildInfoPath) return action({ buildInfoPath }, /*sourceFileOrBundle*/ undefined);
81 const buildInfoPath = getTsBuildInfoEmitOutputFilePath(options); constant
82 … return { jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath };
101 …jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath: undefined };
161 …FilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath } = getOutputP… constant
166 addOutput(buildInfoPath);
274 const buildInfoPath = getTsBuildInfoEmitOutputFilePath(configFile.options); constant
275 if (buildInfoPath) return buildInfoPath;
312 …FilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath }: EmitFileNam…
[all …]
Dbuilder.ts1478 … createBuilderProgramUsingProgramBuildInfo(program: ProgramBuildInfo, buildInfoPath: string, host:…
1479 …const buildInfoDirectory = getDirectoryPath(getNormalizedAbsolutePath(buildInfoPath, host.getCurre…
1582 buildInfoPath: string,
1585 …const buildInfoDirectory = getDirectoryPath(getNormalizedAbsolutePath(buildInfoPath, host.getCurre…
Dprogram.ts3910 …const buildInfoPath = !options.suppressOutputPathCheck ? getTsBuildInfoEmitOutputFilePath(options)… constant
3938 … if (!parent && buildInfoPath && buildInfoPath === getTsBuildInfoEmitOutputFilePath(options)) {
3939 …use_it_will_overwrite_tsbuildinfo_file_generated_by_referenced_project_1, buildInfoPath, ref.path);
3940 hasEmitBlockingDiagnostics.set(toPath(buildInfoPath), true);
4379 …FilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath } = getOutputP… constant
4380 …readFile, jsFilePath!, sourceMapFilePath, declarationFilePath!, declarationMapPath, buildInfoPath);
Dtypes.ts4173 /*@internal*/ buildInfoPath?: string;
/third_party/typescript/src/compiler/factory/
DnodeFactory.ts6829 buildInfoPath: string | undefined
6849 buildInfoPath?: string | undefined,
6862 buildInfoPath?: string | undefined,
6886 … buildInfo = result !== undefined ? getBuildInfo(node.buildInfoPath!, result) ?? false : false;
6894 node.buildInfoPath = declarationMapTextOrBuildInfoPath;
6912 node.buildInfoPath = buildInfoPath;
/third_party/typescript/lib/
DtypingsInstaller.js28214 …, declarationMapTextOrBuildInfoPath, javascriptPath, declarationPath, buildInfoPath, buildInfo, ol… argument
28237 …buildInfo_1 = result !== undefined ? (_a = ts.getBuildInfo(node.buildInfoPath, result)) !== null &…
28245 node.buildInfoPath = declarationMapTextOrBuildInfoPath;
28263 node.buildInfoPath = buildInfoPath;
114772 var buildInfoPath = getTsBuildInfoEmitOutputFilePath(options);
114773 if (buildInfoPath)
114774 … return action({ buildInfoPath: buildInfoPath }, /*sourceFileOrBundle*/ undefined); property
114810 var buildInfoPath = getTsBuildInfoEmitOutputFilePath(options);
114811 …ePath: declarationFilePath, declarationMapPath: declarationMapPath, buildInfoPath: buildInfoPath };
114830 …nFilePath: declarationFilePath, declarationMapPath: declarationMapPath, buildInfoPath: undefined };
[all …]
Dtsc.js22785 …, declarationMapTextOrBuildInfoPath, javascriptPath, declarationPath, buildInfoPath, buildInfo, ol… argument
22808 …buildInfo_1 = result !== undefined ? (_a = ts.getBuildInfo(node.buildInfoPath, result)) !== null &…
22816 node.buildInfoPath = declarationMapTextOrBuildInfoPath;
22834 node.buildInfoPath = buildInfoPath;
94689 var buildInfoPath = getTsBuildInfoEmitOutputFilePath(options);
94690 if (buildInfoPath)
94691 return action({ buildInfoPath: buildInfoPath }, undefined); property
94726 var buildInfoPath = getTsBuildInfoEmitOutputFilePath(options);
94727 …ePath: declarationFilePath, declarationMapPath: declarationMapPath, buildInfoPath: buildInfoPath };
94744 …nFilePath: declarationFilePath, declarationMapPath: declarationMapPath, buildInfoPath: undefined };
[all …]
Dtypescript.d.ts4899 …ned, declarationPath: string, declarationMapPath: string | undefined, buildInfoPath: string | unde…
DtypescriptServices.d.ts4899 …ned, declarationPath: string, declarationMapPath: string | undefined, buildInfoPath: string | unde…
Dtsserverlibrary.d.ts4899 …ned, declarationPath: string, declarationMapPath: string | undefined, buildInfoPath: string | unde…
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts4899 …ned, declarationPath: string, declarationMapPath: string | undefined, buildInfoPath: string | unde…
Dtsserverlibrary.d.ts4899 …ned, declarationPath: string, declarationMapPath: string | undefined, buildInfoPath: string | unde…