Searched refs:sourceMapFilePath (Results 1 – 7 of 7) sorted by relevance
| /third_party/typescript/src/server/ |
| D | scriptInfo.ts | 70 this.info.sourceMapFilePath = undefined; 321 sourceMapFilePath?: Path | SourceMapFileWatcher | false; 667 if (this.sourceMapFilePath && !isString(this.sourceMapFilePath)) { 668 closeFileWatcherOf(this.sourceMapFilePath); 669 this.sourceMapFilePath = undefined;
|
| D | editorServices.ts | 1257 if (info.sourceMapFilePath) { 1258 if (isString(info.sourceMapFilePath)) { 1259 const sourceMapFileInfo = this.getScriptInfoForPath(info.sourceMapFilePath); 1263 this.delayUpdateSourceInfoProjects(info.sourceMapFilePath.sourceInfos); 1305 declarationInfo.sourceMapFilePath = undefined; 2857 if (isString(declarationInfo.sourceMapFilePath)) { 2859 … const sourceMapFileInfo = this.getScriptInfoForPath(declarationInfo.sourceMapFilePath); 2867 declarationInfo.sourceMapFilePath = undefined; 2869 else if (declarationInfo.sourceMapFilePath) { 2870 …declarationInfo.sourceMapFilePath.sourceInfos = this.addSourceInfoToSourceMap(sourceFileName, proj… [all …]
|
| /third_party/typescript/src/compiler/ |
| D | emitter.ts | 78 const sourceMapFilePath = jsFilePath && getSourceMapFilePath(jsFilePath, options); constant 82 … return { jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath }; 98 …const sourceMapFilePath = !jsFilePath || isJsonSourceFile(sourceFile) ? undefined : getSourceMapFi… constant 101 …return { jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath: un… 161 …const { jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath } = … constant 163 addOutput(sourceMapFilePath); 312 …function emitSourceFileOrBundle({ jsFilePath, sourceMapFilePath, declarationFilePath, declarationM… 322 … emitJsFileOrBundle(sourceFileOrBundle, jsFilePath, sourceMapFilePath, relativeToBuildInfo); 338 if (sourceMapFilePath) { 339 emittedFilesList.push(sourceMapFilePath); [all …]
|
| D | program.ts | 4379 …const { jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath } = … constant 4380 …const node = createInputFiles(readFile, jsFilePath!, sourceMapFilePath, declarationFilePath!, decl…
|
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| D | projectReferencesSourcemap.ts | 150 … assert.equal(dtsInfo.sourceMapFilePath, dtsMapPath, `${debugInfo} sourceMapFilePath`); 153 … assert.isNotString(dtsInfo.sourceMapFilePath, `${debugInfo} sourceMapFilePath`); 154 … assert.isNotFalse(dtsInfo.sourceMapFilePath, `${debugInfo} sourceMapFilePath`); 155 … assert.isDefined(dtsInfo.sourceMapFilePath, `${debugInfo} sourceMapFilePath`); 161 sourceMapPath = dtsInfo?.sourceMapFilePath; 166 … assert.equal(dtsInfo?.sourceMapFilePath, sourceMapPath, `${debugInfo} sourceMapFilePath`);
|
| /third_party/typescript/lib/ |
| D | typingsInstaller.js | 114807 var sourceMapFilePath = jsFilePath && getSourceMapFilePath(jsFilePath, options); 114811 …return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declar… 114827 …var sourceMapFilePath = !jsFilePath || ts.isJsonSourceFile(sourceFile) ? undefined : getSourceMapF… 114830 …return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declar… 114878 …, /*forceDtsPaths*/ false), jsFilePath = _a.jsFilePath, sourceMapFilePath = _a.sourceMapFilePath, … 114880 addOutput(sourceMapFilePath); 115014 …var jsFilePath = _a.jsFilePath, sourceMapFilePath = _a.sourceMapFilePath, declarationFilePath = _a… 115024 … emitJsFileOrBundle(sourceFileOrBundle, jsFilePath, sourceMapFilePath, relativeToBuildInfo); 115037 if (sourceMapFilePath) { 115038 emittedFilesList.push(sourceMapFilePath); [all …]
|
| D | tsc.js | 94723 var sourceMapFilePath = jsFilePath && getSourceMapFilePath(jsFilePath, options); 94727 …return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declar… 94741 …var sourceMapFilePath = !jsFilePath || ts.isJsonSourceFile(sourceFile) ? undefined : getSourceMapF… 94744 …return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declar… 94790 …configFile.options, false), jsFilePath = _a.jsFilePath, sourceMapFilePath = _a.sourceMapFilePath, … 94792 addOutput(sourceMapFilePath); 94914 …var jsFilePath = _a.jsFilePath, sourceMapFilePath = _a.sourceMapFilePath, declarationFilePath = _a… 94924 … emitJsFileOrBundle(sourceFileOrBundle, jsFilePath, sourceMapFilePath, relativeToBuildInfo); 94937 if (sourceMapFilePath) { 94938 emittedFilesList.push(sourceMapFilePath); [all …]
|