OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Flags: --harmony-arrays --allow-natives-syntax | 5 // Flags: --harmony-arrays --allow-natives-syntax |
6 | 6 |
7 var typedArrayConstructors = [ | 7 var typedArrayConstructors = [ |
8 Uint8Array, | 8 Uint8Array, |
9 Int8Array, | 9 Int8Array, |
10 Uint16Array, | 10 Uint16Array, |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 assertThrows(function () { constructor.prototype.every.call({}, function (x) {
}) }, TypeError); | 128 assertThrows(function () { constructor.prototype.every.call({}, function (x) {
}) }, TypeError); |
129 assertThrows(function () { constructor.prototype.every.call(0, function (x) {}
) }, TypeError); | 129 assertThrows(function () { constructor.prototype.every.call(0, function (x) {}
) }, TypeError); |
130 | 130 |
131 // Method must be useable on instances of other typed arrays. | 131 // Method must be useable on instances of other typed arrays. |
132 for (var i = 0; i < typedArrayConstructors.length; i++) { | 132 for (var i = 0; i < typedArrayConstructors.length; i++) { |
133 count = 0; | 133 count = 0; |
134 a = new typedArrayConstructors[i](4); | 134 a = new typedArrayConstructors[i](4); |
135 constructor.prototype.every.call(a, function (x) { count++; return true; }); | 135 constructor.prototype.every.call(a, function (x) { count++; return true; }); |
136 assertEquals(a.length, count); | 136 assertEquals(a.length, count); |
137 } | 137 } |
| 138 |
| 139 // Shadowing length doesn't affect every, unlike Array.prototype.every |
| 140 a = new constructor([1, 2]); |
| 141 Object.defineProperty(a, 'length', {value: 1}); |
| 142 var x = 0; |
| 143 assertEquals(a.every(function(elt) { x += elt; return true; }), true); |
| 144 assertEquals(x, 3); |
| 145 assertEquals(Array.prototype.every.call(a, |
| 146 function(elt) { x += elt; return true; }), true); |
| 147 assertEquals(x, 4); |
138 } | 148 } |
139 | 149 |
140 for (i = 0; i < typedArrayConstructors.length; i++) { | 150 for (i = 0; i < typedArrayConstructors.length; i++) { |
141 TestTypedArrayForEach(typedArrayConstructors[i]); | 151 TestTypedArrayForEach(typedArrayConstructors[i]); |
142 } | 152 } |
OLD | NEW |