summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug797493.js
blob: 880495437a02c4d6e291ffacc359e2289dc09332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// |jit-test| error:ReferenceError

// Binary: cache/js-dbg-64-13fd49ef7786-linux
// Flags:
//

var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);
dbg.onDebuggerStatement = function handleDebugger(frame) {
    frame.onPop = function handlePop(c) {
      poppedFrames.indexOf(this)
    }
};
g.eval("function* g() { for (var i = 0; i < 10; i++) { debugger; yield i; } }");
assertEq(g.eval("var t = 0; for (j of g()) t += j; t;"), 45);