summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/for-of/array-prototype.js
blob: 074420e871fb7dc92015be967d2ed4eae47b5552 (plain)
1
2
3
4
5
6
7
8
9
10
11
// for-of works on Array.prototype.

var v;
for (v of Array.prototype)
    throw "FAIL";

var s = '';
Array.prototype.push('a', 'b');
for (v of Array.prototype)
    s += v;
assertEq(s, 'ab');