Home
last modified time | relevance | path

Searched refs:RawSourceMap (Results 1 – 6 of 6) sorted by relevance

/third_party/typescript/src/harness/
DdocumentsUtil.ts41 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;
DsourceMapRecorder.ts18 export function initializeSourceMapDecoding(sourceMap: ts.RawSourceMap) {
56 …riter(sourceMapRecordWriter: Compiler.WriterAggregator, sourceMap: ts.RawSourceMap, currentJsFile:…
/third_party/typescript/scripts/types/
Dambient.d.ts31 sourceMap?: import("./sourcemaps").RawSourceMap | string;
51 sourceMap?: import("./sourcemaps").RawSourceMap | string;
/third_party/typescript/src/compiler/
Dsourcemap.ts144 …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…
Dtypes.ts3606 /*@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/
DdeclarationFileMaps.ts52 const aDtsMapContent: RawSourceMap = {
76 const bDtsMapContent: RawSourceMap = {
719 const aDtsInlinedSources: RawSourceMap = {