summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/DebuggeeWouldRun-04.js
blob: 6ed831b0d4f90d7de60c82e0eebd027965b7ba24 (plain)
1
2
3
4
5
6
7
8
9
// Bug 1250190: Shouldn't crash. |jit-test| error: yadda

var g = newGlobal();
var dbg = new Debugger(g);
dbg.onNewScript = function () {
  dbg.onNewScript = function () { throw "yadda"; };
  g.Function("noodles;");
}
g.Function("poodles;");