Thu, 22 Jan 2015 13:21:57 +0100
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');