blob: c7690cca7a5724b974589b526a92c25eb8227507 (
plain)
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
|
// Test that prevUpToDate on frames are cleared.
var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);
g.eval(`
function outer(unaliasedArg) {
var unaliasedVar = unaliasedArg + 42;
var aliasedVar = unaliasedArg;
inner();
return unaliasedVar; // To prevent the JIT from optimizing out unaliasedVar.
function inner() {
aliasedVar++;
}
}
`);
var log = "";
for (var script of dbg.findScripts()) {
if (script.displayName === "inner") {
script.setBreakpoint(0, { hit: function(frame) {
// Force updateLiveScopes.
var outerEnv = frame.environment;
// Get the environment of outer's frame on the stack, so that we may
// recover unaliased bindings in the debug scope.
outerEnv = frame.older.environment;
log += outerEnv.getVariable('unaliasedArg'); // 42
log += outerEnv.getVariable('unaliasedVar'); // 84
log += outerEnv.getVariable('aliasedVar'); // 42
}});
}
}
g.outer(42);
assertEq(log, "428442");
|