路泰科技体检小程序UI设计新版本
1
wwl
2025-07-30 61b58bd03d04d2eb50ac2d93a188c819fe67e01e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
import {
  AnyMap,
  originalPositionFor,
  generatedPositionFor,
  allGeneratedPositionsFor,
  eachMapping,
  encodedMappings,
  sourceContentFor,
} from '@jridgewell/trace-mapping';
import {
  GenMapping,
  maybeAddMapping,
  toDecodedMap,
  toEncodedMap,
  setSourceContent,
  fromMap,
} from '@jridgewell/gen-mapping';
 
import type {
  TraceMap,
  SourceMapInput,
  SectionedSourceMapInput,
  DecodedSourceMap,
} from '@jridgewell/trace-mapping';
export type { TraceMap, SourceMapInput, SectionedSourceMapInput, DecodedSourceMap };
 
import type { Mapping, EncodedSourceMap } from '@jridgewell/gen-mapping';
export type { Mapping, EncodedSourceMap };
 
export class SourceMapConsumer {
  declare private _map: TraceMap;
  declare file: TraceMap['file'];
  declare names: TraceMap['names'];
  declare sourceRoot: TraceMap['sourceRoot'];
  declare sources: TraceMap['sources'];
  declare sourcesContent: TraceMap['sourcesContent'];
  declare version: TraceMap['version'];
 
  constructor(
    map: ConstructorParameters<typeof AnyMap>[0],
    mapUrl?: ConstructorParameters<typeof AnyMap>[1],
  ) {
    const trace = (this._map = new AnyMap(map, mapUrl));
 
    this.file = trace.file;
    this.names = trace.names;
    this.sourceRoot = trace.sourceRoot;
    this.sources = trace.resolvedSources;
    this.sourcesContent = trace.sourcesContent;
    this.version = trace.version;
  }
 
  static fromSourceMap(map: SourceMapGenerator, mapUrl?: Parameters<typeof AnyMap>[1]) {
    // This is more performant if we receive
    // a @jridgewell/source-map SourceMapGenerator
    if (map.toDecodedMap) {
      return new SourceMapConsumer(map.toDecodedMap() as SectionedSourceMapInput, mapUrl);
    }
 
    // This is a fallback for `source-map` and `source-map-js`
    return new SourceMapConsumer(map.toJSON() as SectionedSourceMapInput, mapUrl);
  }
 
  get mappings(): string {
    return encodedMappings(this._map);
  }
 
  originalPositionFor(
    needle: Parameters<typeof originalPositionFor>[1],
  ): ReturnType<typeof originalPositionFor> {
    return originalPositionFor(this._map, needle);
  }
 
  generatedPositionFor(
    originalPosition: Parameters<typeof generatedPositionFor>[1],
  ): ReturnType<typeof generatedPositionFor> {
    return generatedPositionFor(this._map, originalPosition);
  }
 
  allGeneratedPositionsFor(
    originalPosition: Parameters<typeof generatedPositionFor>[1],
  ): ReturnType<typeof generatedPositionFor>[] {
    return allGeneratedPositionsFor(this._map, originalPosition);
  }
 
  hasContentsOfAllSources(): boolean {
    if (!this.sourcesContent || this.sourcesContent.length !== this.sources.length) {
      return false;
    }
 
    for (const content of this.sourcesContent) {
      if (content == null) {
        return false;
      }
    }
 
    return true;
  }
 
  sourceContentFor(source: string, nullOnMissing?: boolean): string | null {
    const sourceContent = sourceContentFor(this._map, source);
    if (sourceContent != null) {
      return sourceContent;
    }
 
    if (nullOnMissing) {
      return null;
    }
    throw new Error(`"${source}" is not in the SourceMap.`);
  }
 
  eachMapping(
    callback: Parameters<typeof eachMapping>[1],
    context?: any /*, order?: number*/,
  ): void {
    // order is ignored as @jridgewell/trace-map doesn't implement it
    eachMapping(this._map, context ? callback.bind(context) : callback);
  }
 
  destroy() {
    // noop.
  }
}
 
export class SourceMapGenerator {
  declare private _map: GenMapping;
 
  constructor(opts: ConstructorParameters<typeof GenMapping>[0] | GenMapping) {
    // TODO :: should this be duck-typed ?
    this._map = opts instanceof GenMapping ? opts : new GenMapping(opts);
  }
 
  static fromSourceMap(consumer: SourceMapConsumer) {
    return new SourceMapGenerator(fromMap(consumer));
  }
 
  addMapping(mapping: Parameters<typeof maybeAddMapping>[1]): ReturnType<typeof maybeAddMapping> {
    maybeAddMapping(this._map, mapping);
  }
 
  setSourceContent(
    source: Parameters<typeof setSourceContent>[1],
    content: Parameters<typeof setSourceContent>[2],
  ): ReturnType<typeof setSourceContent> {
    setSourceContent(this._map, source, content);
  }
 
  toJSON(): ReturnType<typeof toEncodedMap> {
    return toEncodedMap(this._map);
  }
 
  toString(): string {
    return JSON.stringify(this.toJSON());
  }
 
  toDecodedMap(): ReturnType<typeof toDecodedMap> {
    return toDecodedMap(this._map);
  }
}