js/src/jit-test/tests/debug/Environment-identity-04.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 // Observably different visits to the same with-statement produce distinct Environments.
     3 var g = newGlobal();
     4 g.eval("function f(a, obj) { with (obj) return function () { return a; }; }");
     5 var dbg = Debugger(g);
     6 var hits = 0;
     7 dbg.onDebuggerStatement = function (frame) {
     8     // Even though the two visits to the with-statement have the same target
     9     // object, Math, the environments are observably different.
    10     var f1 = frame.eval("f(1, Math);").return;
    11     var f2 = frame.eval("f(2, Math);").return;
    12     assertEq(f1.environment !== f2.environment, true);
    13     assertEq(f1.object, f2.object);
    14     assertEq(f1.call().return, 1);
    15     assertEq(f2.call().return, 2);
    16     hits++;
    17 };
    18 g.eval("debugger;");
    19 assertEq(hits, 1);

mercurial