js/src/jit-test/tests/closures/flat-closure-4.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 actual = '';
     2 expected = ',,,,,[object Object],[object Object],[object Object],[object Object],[object Object],,,,,,[object Object],[object Object],[object Object],[object Object],[object Object],,,,,,[object Object],[object Object],[object Object],[object Object],[object Object],,,,,,[object Object],[object Object],[object Object],[object Object],[object Object],,,,,,';
     4 function f() {
     5   var e;
     6   for each (e in ["", {}, "", {}, "", {}, "", {}, ""]) {
     7       var g = function() { for (var i = 0; i < 5; ++i) appendToActual(e); }
     8       g();
     9   }
    10 }
    12 f();
    15 assertEq(actual, expected)

mercurial