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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
// @flow
import typeof SourceMaps from "devtools-source-map";
import {
type SourceScope,
type BindingData,
type BindingLocation,
} from "../../../workers/parser";
import type { RenderableScope } from "../scopes/getScope";
import { locColumn } from "./locColumn";
import {
loadRangeMetadata,
findMatchingRange,
type MappedOriginalRange,
} from "./rangeMetadata";
// eslint-disable-next-line max-len
import {
findGeneratedReference,
findGeneratedImportReference,
findGeneratedImportDeclaration,
type GeneratedDescriptor,
} from "./findGeneratedBindingFromPosition";
import {
buildGeneratedBindingList,
buildFakeBindingList,
type GeneratedBindingLocation,
} from "./buildGeneratedBindingList";
import {
originalRangeStartsInside,
getApplicableBindingsForOriginalPosition,
} from "./getApplicableBindingsForOriginalPosition";
import { getOptimizedOutGrip } from "./optimizedOut";
import { log } from "../../log";
import type { ThunkArgs } from "../../../actions/types";
import type {
PartialPosition,
Scope,
Source,
SourceContent,
Frame,
BindingContents,
ScopeBindings,
MappedLocation,
} from "../../../types";
export type OriginalScope = RenderableScope;
export type MappedFrameLocation = MappedLocation & {
this?: $ElementType<Frame, "this">,
};
export async function buildMappedScopes(
source: Source,
content: SourceContent,
frame: MappedFrameLocation,
scopes: ?Scope,
{ client, parser, sourceMaps }: ThunkArgs
): Promise<?{
mappings: {
[string]: string,
},
scope: OriginalScope,
}> {
const originalAstScopes = await parser.getScopes(frame.location);
const generatedAstScopes = await parser.getScopes(frame.generatedLocation);
if (!originalAstScopes || !generatedAstScopes) {
return null;
}
const originalRanges = await loadRangeMetadata(
frame.location,
originalAstScopes,
sourceMaps
);
if (hasLineMappings(originalRanges)) {
return null;
}
let generatedAstBindings;
if (scopes) {
generatedAstBindings = buildGeneratedBindingList(
scopes,
generatedAstScopes,
frame.this
);
} else {
generatedAstBindings = buildFakeBindingList(generatedAstScopes);
}
const {
mappedOriginalScopes,
expressionLookup,
} = await mapOriginalBindingsToGenerated(
source,
content,
originalRanges,
originalAstScopes,
generatedAstBindings,
client,
sourceMaps
);
const globalLexicalScope = scopes
? getGlobalFromScope(scopes)
: generateGlobalFromAst(generatedAstScopes);
const mappedGeneratedScopes = generateClientScope(
globalLexicalScope,
mappedOriginalScopes
);
return isReliableScope(mappedGeneratedScopes)
? { mappings: expressionLookup, scope: mappedGeneratedScopes }
: null;
}
async function mapOriginalBindingsToGenerated(
source: Source,
content: SourceContent,
originalRanges: Array<MappedOriginalRange>,
originalAstScopes,
generatedAstBindings,
client,
sourceMaps
) {
const expressionLookup = {};
const mappedOriginalScopes = [];
const cachedSourceMaps = batchScopeMappings(
originalAstScopes,
source,
sourceMaps
);
for (const item of originalAstScopes) {
const generatedBindings = {};
for (const name of Object.keys(item.bindings)) {
const binding = item.bindings[name];
const result = await findGeneratedBinding(
cachedSourceMaps,
client,
source,
content,
name,
binding,
originalRanges,
generatedAstBindings
);
if (result) {
generatedBindings[name] = result.grip;
if (
binding.refs.length !== 0 &&
// These are assigned depth-first, so we don't want shadowed
// bindings in parent scopes overwriting the expression.
!Object.prototype.hasOwnProperty.call(expressionLookup, name)
) {
expressionLookup[name] = result.expression;
}
}
}
mappedOriginalScopes.push({
...item,
generatedBindings,
});
}
return {
mappedOriginalScopes,
expressionLookup,
};
}
/**
* Consider a scope and its parents reliable if the vast majority of its
* bindings were successfully mapped to generated scope bindings.
*/
function isReliableScope(scope: OriginalScope): boolean {
let totalBindings = 0;
let unknownBindings = 0;
for (let s = scope; s; s = s.parent) {
const vars = s.bindings?.variables || {};
for (const key of Object.keys(vars)) {
const binding = vars[key];
totalBindings += 1;
if (
binding.value &&
typeof binding.value === "object" &&
(binding.value.type === "unscoped" || binding.value.type === "unmapped")
) {
unknownBindings += 1;
}
}
}
// As determined by fair dice roll.
return totalBindings === 0 || unknownBindings / totalBindings < 0.25;
}
function hasLineMappings(ranges): boolean {
return ranges.every(
range => range.columnStart === 0 && range.columnEnd === Infinity
);
}
function batchScopeMappings(
originalAstScopes: Array<SourceScope>,
source: Source,
sourceMaps: SourceMaps
) {
const precalculatedRanges = new Map();
const precalculatedLocations = new Map();
// Explicitly dispatch all of the sourcemap requests synchronously up front so
// that they will be batched into a single request for the worker to process.
for (const item of originalAstScopes) {
for (const name of Object.keys(item.bindings)) {
for (const ref of item.bindings[name].refs) {
const locs = [ref];
if (ref.type !== "ref") {
locs.push(ref.declaration);
}
for (const loc of locs) {
precalculatedRanges.set(
buildLocationKey(loc.start),
sourceMaps.getGeneratedRanges(loc.start)
);
precalculatedLocations.set(
buildLocationKey(loc.start),
sourceMaps.getGeneratedLocation(loc.start)
);
precalculatedLocations.set(
buildLocationKey(loc.end),
sourceMaps.getGeneratedLocation(loc.end)
);
}
}
}
}
return {
async getGeneratedRanges(pos) {
const key = buildLocationKey(pos);
if (!precalculatedRanges.has(key)) {
log("Bad precalculated mapping");
return sourceMaps.getGeneratedRanges(pos);
}
return precalculatedRanges.get(key);
},
async getGeneratedLocation(pos) {
const key = buildLocationKey(pos);
if (!precalculatedLocations.has(key)) {
log("Bad precalculated mapping");
return sourceMaps.getGeneratedLocation(pos);
}
return precalculatedLocations.get(key);
},
};
}
function buildLocationKey(loc: PartialPosition): string {
return `${loc.line}:${locColumn(loc)}`;
}
function generateClientScope(
globalLexicalScope: OriginalScope,
originalScopes: Array<SourceScope & { generatedBindings: ScopeBindings }>
): OriginalScope {
// Build a structure similar to the client's linked scope object using
// the original AST scopes, but pulling in the generated bindings
// linked to each scope.
const result = originalScopes
.slice(0, -2)
.reverse()
.reduce((acc, orig, i): OriginalScope => {
const {
// The 'this' binding data we have is handled independently, so
// the binding data is not included here.
// eslint-disable-next-line no-unused-vars
this: _this,
...variables
} = orig.generatedBindings;
return {
parent: acc,
actor: `originalActor${i}`,
type: orig.type,
scopeKind: orig.scopeKind,
bindings: {
arguments: [],
variables,
},
...(orig.type === "function"
? {
function: {
displayName: orig.displayName,
},
}
: null),
...(orig.type === "block"
? {
block: {
displayName: orig.displayName,
},
}
: null),
};
}, globalLexicalScope);
// The rendering logic in getScope 'this' bindings only runs on the current
// selected frame scope, so we pluck out the 'this' binding that was mapped,
// and put it in a special location
const thisScope = originalScopes.find(scope => scope.bindings.this);
if (result.bindings && thisScope) {
result.bindings.this = thisScope.generatedBindings.this || null;
}
return result;
}
function getGlobalFromScope(scopes: Scope): OriginalScope {
// Pull the root object scope and root lexical scope to reuse them in
// our mapped scopes. This assumes that file being processed is
// a CommonJS or ES6 module, which might not be ideal. Potentially
// should add some logic to try to detect those cases?
let globalLexicalScope: ?OriginalScope = null;
for (let s = scopes; s.parent; s = s.parent) {
// $FlowIgnore - Flow doesn't like casting 'parent'.
globalLexicalScope = s;
}
if (!globalLexicalScope) {
throw new Error("Assertion failure - there should always be a scope");
}
return globalLexicalScope;
}
function generateGlobalFromAst(
generatedScopes: Array<SourceScope>
): OriginalScope {
const globalLexicalAst = generatedScopes[generatedScopes.length - 2];
if (!globalLexicalAst) {
throw new Error("Assertion failure - there should always be a scope");
}
return {
actor: "generatedActor1",
type: "block",
scopeKind: "",
bindings: {
arguments: [],
variables: Object.fromEntries(
Object.keys(globalLexicalAst).map(key => [key, getOptimizedOutGrip()])
),
},
// $FlowIgnore - Flow doesn't like casting 'parent'.
parent: {
actor: "generatedActor0",
object: getOptimizedOutGrip(),
scopeKind: "",
type: "object",
},
};
}
function hasValidIdent(
range: MappedOriginalRange,
pos: BindingLocation
): boolean {
return (
range.type === "match" ||
// For declarations, we allow the range on the identifier to be a
// more general "contains" to increase the chances of a match.
(pos.type !== "ref" && range.type === "contains")
);
}
// eslint-disable-next-line complexity
async function findGeneratedBinding(
sourceMaps: any,
client: any,
source: Source,
content: SourceContent,
name: string,
originalBinding: BindingData,
originalRanges: Array<MappedOriginalRange>,
generatedAstBindings: Array<GeneratedBindingLocation>
): Promise<?{
grip: BindingContents,
expression: string | null,
}> {
// If there are no references to the implicits, then we have no way to
// even attempt to map it back to the original since there is no location
// data to use. Bail out instead of just showing it as unmapped.
if (
originalBinding.type === "implicit" &&
!originalBinding.refs.some(item => item.type === "ref")
) {
return null;
}
const loadApplicableBindings = async (pos, locationType) => {
let applicableBindings = await getApplicableBindingsForOriginalPosition(
generatedAstBindings,
source,
pos,
originalBinding.type,
locationType,
sourceMaps
);
if (applicableBindings.length > 0) {
hadApplicableBindings = true;
}
if (locationType === "ref") {
// Some tooling creates ranges that map a line as a whole, which is useful
// for step-debugging, but can easily lead to finding the wrong binding.
// To avoid these false-positives, we entirely ignore bindings matched
// by ranges that cover full lines.
applicableBindings = applicableBindings.filter(
({ range }) =>
!(range.start.column === 0 && range.end.column === Infinity)
);
}
if (
locationType !== "ref" &&
!(await originalRangeStartsInside(source, pos, sourceMaps))
) {
applicableBindings = [];
}
return applicableBindings;
};
const { refs } = originalBinding;
let hadApplicableBindings = false;
let genContent: GeneratedDescriptor | null = null;
for (const pos of refs) {
const applicableBindings = await loadApplicableBindings(pos, pos.type);
const range = findMatchingRange(originalRanges, pos);
if (range && hasValidIdent(range, pos)) {
if (originalBinding.type === "import") {
genContent = await findGeneratedImportReference(applicableBindings);
} else {
genContent = await findGeneratedReference(applicableBindings);
}
}
if (
(pos.type === "class-decl" || pos.type === "class-inner") &&
content.contentType &&
content.contentType.match(/\/typescript/)
) {
const declRange = findMatchingRange(originalRanges, pos.declaration);
if (declRange && declRange.type !== "multiple") {
const applicableDeclBindings = await loadApplicableBindings(
pos.declaration,
pos.type
);
// Resolve to first binding in the range
const declContent = await findGeneratedReference(
applicableDeclBindings
);
if (declContent) {
// Prefer the declaration mapping in this case because TS sometimes
// maps class declaration names to "export.Foo = Foo;" or to
// the decorator logic itself
genContent = declContent;
}
}
}
if (
!genContent &&
pos.type === "import-decl" &&
typeof pos.importName === "string"
) {
const { importName } = pos;
const declRange = findMatchingRange(originalRanges, pos.declaration);
// The import declaration should have an original position mapping,
// but otherwise we don't really have preferences on the range type
// because it can have multiple bindings, but we do want to make sure
// that all of the bindings that match the range are part of the same
// import declaration.
if (declRange?.singleDeclaration) {
const applicableDeclBindings = await loadApplicableBindings(
pos.declaration,
pos.type
);
// match the import declaration location
genContent = await findGeneratedImportDeclaration(
applicableDeclBindings,
importName
);
}
}
if (genContent) {
break;
}
}
if (genContent && genContent.desc) {
return {
grip: genContent.desc,
expression: genContent.expression,
};
} else if (genContent) {
// If there is no descriptor for 'this', then this is not the top-level
// 'this' that the server gave us a binding for, and we can just ignore it.
if (name === "this") {
return null;
}
// If the location is found but the descriptor is not, then it
// means that the server scope information didn't match the scope
// information from the DevTools parsed scopes.
return {
grip: {
configurable: false,
enumerable: true,
writable: false,
value: {
type: "unscoped",
unscoped: true,
// HACK: Until support for "unscoped" lands in devtools-reps,
// this will make these show as (unavailable).
missingArguments: true,
},
},
expression: null,
};
} else if (!hadApplicableBindings && name !== "this") {
// If there were no applicable bindings to consider while searching for
// matching bindings, then the source map for this file didn't make any
// attempt to map the binding, and that most likely means that the
// code was entirely emitted from the output code.
return {
grip: getOptimizedOutGrip(),
expression: `
(() => {
throw new Error('"' + ${JSON.stringify(
name
)} + '" has been optimized out.');
})()
`,
};
}
// If no location mapping is found, then the map is bad, or
// the map is okay but it original location is inside
// of some scope, but the generated location is outside, leading
// us to search for bindings that don't technically exist.
return {
grip: {
configurable: false,
enumerable: true,
writable: false,
value: {
type: "unmapped",
unmapped: true,
// HACK: Until support for "unmapped" lands in devtools-reps,
// this will make these show as (unavailable).
missingArguments: true,
},
},
expression: null,
};
}
|