js/src/jit-test/tests/debug/Frame-eval-05.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-eval-05.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,14 @@
     1.4 +// var declarations in strict frame.eval do not modify the frame
     1.5 +
     1.6 +var g = newGlobal();
     1.7 +var dbg = new Debugger(g);
     1.8 +var cv;
     1.9 +dbg.onDebuggerStatement = function (frame) {
    1.10 +    cv = frame.eval("'use strict'; var a = 2; h();");
    1.11 +};
    1.12 +g.a = 1;
    1.13 +g.eval("function f(s) { function h() { return a; } eval(s); debugger; } ");
    1.14 +g.eval("f('0');");
    1.15 +assertEq(cv.return, 1);
    1.16 +g.eval("f('var a = 3;');");
    1.17 +assertEq(cv.return, 3);

mercurial