summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Environment-callee-03.js
blob: 6369817a8a89a90e9b61957a1beaf5b5dccd2d25 (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
// Environments of different instances of the same generator have the same
// callee. I love this job.

var g = newGlobal();
var dbg = new Debugger;
var gw = dbg.addDebuggee(g);

function check(gen, label) {
  print("check(" + label + ")");
  var hits;
  dbg.onDebuggerStatement = function (frame) {
    hits++;
    var env = frame.environment;
    assertEq(env.callee, gw.makeDebuggeeValue(g.f));
  };
  hits = 0;
  gen.next();
  assertEq(hits, 1);
}

g.eval('function f(x) { debugger; yield x; }');
g.eval('var g = f(2);');
g.eval('var h = f(3);');
check(g.g, 'g.g');
check(g.h, 'g.h');

g.eval('function* f(x) { debugger; yield x; }');
g.eval('var g = f(2);');
g.eval('var h = f(3);');
check(g.g, 'g.g');
check(g.h, 'g.h');