Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
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;");