diff options
Diffstat (limited to 'js/src/jit-test/tests/debug/bug1252464.js')
-rw-r--r-- | js/src/jit-test/tests/debug/bug1252464.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/bug1252464.js b/js/src/jit-test/tests/debug/bug1252464.js new file mode 100644 index 0000000000..e93e5ec32f --- /dev/null +++ b/js/src/jit-test/tests/debug/bug1252464.js @@ -0,0 +1,15 @@ +// |jit-test| error: ReferenceError + +g = newGlobal({newCompartment: true}); +dbg = Debugger(g); +hits = 0; +dbg.onNewScript = function () { return hits++; }; +assertEq(g.eval("eval('2 + 3')"), 5); +this.gczeal(hits,1); +dbg = Debugger(g); +g.h = function () { + var env = dbg.getNewestFrame().environment; + dbg = 0; + assertThrowsInstanceOf; +} +g.eval("h()"); |