js/src/jit-test/tests/debug/Frame-onStep-resumption-01.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/jit-test/tests/debug/Frame-onStep-resumption-01.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,14 @@
     1.4 +// If frame.onStep returns {return:val}, the frame returns.
     1.5 +
     1.6 +var g = newGlobal();
     1.7 +g.eval("function f(x) {\n" +
     1.8 +       "    var a = x * x;\n" +
     1.9 +       "    return a;\n" +
    1.10 +       "}\n");
    1.11 +
    1.12 +var dbg = Debugger(g);
    1.13 +dbg.onEnterFrame = function (frame) {
    1.14 +    frame.onStep = function () { return {return: "pass"}; };
    1.15 +};
    1.16 +
    1.17 +assertEq(g.f(4), "pass");

mercurial