js/src/jit-test/tests/for-of/arguments-1.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 // for-of can iterate arguments objects.
     3 load(libdir + "iteration.js");
     5 // Arguments objects do not have a .@@iterator() method by default.
     6 // Install one on Object.prototype.
     7 Object.prototype[std_iterator] = Array.prototype[std_iterator];
     9 var s;
    10 function test() {
    11     for (var v of arguments)
    12         s += v;
    13 }
    15 s = '';
    16 test();
    17 assertEq(s, '');
    19 s = '';
    20 test('x', 'y');
    21 assertEq(s, 'xy');

mercurial