Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 // |jit-test| error:Error
3 // Binary: cache/js-dbg-64-48e43edc8834-linux
4 // Flags:
5 //
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;");