js/src/jit-test/tests/auto-regress/bug678086.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:ee4eab8815dd
1 // |jit-test| error:Error
2
3 // Binary: cache/js-dbg-64-48e43edc8834-linux
4 // Flags:
5 //
6
7 function f() {
8 frame = dbg.getNewestFrame();
9 }
10 var g = newGlobal();
11 g.f = function (a, b) { return a + "/" + this . f( ) ; };
12 var dbg = Debugger(g);
13 dbg.onDebuggerStatement = function (frame) {
14 var f = frame.eval("f").return;
15 assertEq(f.call(null, "a", "b").return, "a/b");
16 };
17 g.eval("debugger;");

mercurial