summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Environment-getVariable-12.js
blob: d31bd3b1b414c3840c83d58a4310638fa62bc1f9 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
var g = newGlobal({newCompartment: true});
var dbg = new Debugger;
var gw = dbg.addDebuggee(g);

var hits = 0;
dbg.onDebuggerStatement = function (frame) {
    hits++;
    assertEq(frame.environment.parent.getVariable('y'), true);
};

g.eval("var g;" +
       "function f(x) {" +
       "  { let y = x; " +
       "    if (x)" +
       "      g = function() { eval('debugger') };" +
       "    else" +
       "      g();" +
       "  }" +
       "}" +
       "f(true);" +
       "f(false);");
assertEq(hits, 1);

var hits = 0;
dbg.onDebuggerStatement = function (frame) {
    hits++;
    assertEq(frame.environment.parent.getVariable('y'), 1);
    assertEq(frame.environment.parent.names().indexOf('z'), -1);
};

g.eval("var g;" +
       "{ let y = 1; " +
       "  g = function () { eval(''); debugger; };" +
       "  { let z = 2; " +
       "    g();" +
       "  }"+
       "}");
assertEq(hits, 1);

var hits = 0;
dbg.onDebuggerStatement = function (frame) {
    hits++;
    var e = frame.older.environment.parent;
    assertEq(e.getVariable('z'), true);
    e = e.parent;
    assertEq(e.getVariable('y'), true);
};

g.eval("var g;" +
       "function h() { eval(''); debugger; };" +
       "for (var x of [true, false]) {" +
       "  { let y = x; " +
       "    { let z = x; " +
       "      if (x)" +
       "        g = function () { print(z); h() };" +
       "      else" +
       "        g();" +
       "    }" +
       "  }" +
       "}");
assertEq(hits, 1);