Searched refs:RawSourceMap (Results 1 – 6 of 6) sorted by relevance
/third_party/typescript/src/harness/ |
D | documentsUtil.ts | 41 export interface RawSourceMap { interface 62 public readonly raw: RawSourceMap; 80 constructor(mapFile: string | undefined, data: string | RawSourceMap) { 81 this.raw = typeof data === "string" ? JSON.parse(data) as RawSourceMap : data;
|
D | sourceMapRecorder.ts | 18 export function initializeSourceMapDecoding(sourceMap: ts.RawSourceMap) { 56 …riter(sourceMapRecordWriter: Compiler.WriterAggregator, sourceMap: ts.RawSourceMap, currentJsFile:…
|
/third_party/typescript/scripts/types/ |
D | ambient.d.ts | 31 sourceMap?: import("./sourcemaps").RawSourceMap | string; 51 sourceMap?: import("./sourcemaps").RawSourceMap | string;
|
/third_party/typescript/src/compiler/ |
D | sourcemap.ts | 144 …pendSourceMap(generatedLine: number, generatedCharacter: number, map: RawSourceMap, sourceMapPath:… 266 function toJSON(): RawSourceMap { 318 export function isRawSourceMap(x: any): x is RawSourceMap { 619 …n createDocumentPositionMapper(host: DocumentPositionMapperHost, map: RawSourceMap, mapPath: strin…
|
D | types.ts | 3606 /*@internal*/ parsedSourceMap?: RawSourceMap | false | undefined; 3990 sourceMap: RawSourceMap; 7958 export interface RawSourceMap { 7997 …appendSourceMap(generatedLine: number, generatedCharacter: number, sourceMap: RawSourceMap, source… 8001 toJSON(): RawSourceMap;
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | declarationFileMaps.ts | 52 const aDtsMapContent: RawSourceMap = { 76 const bDtsMapContent: RawSourceMap = { 719 const aDtsInlinedSources: RawSourceMap = {
|