OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Flags: --allow-natives-syntax --no-stress-opt |
| 6 |
| 7 function f(a, i, v) { a[i] = v; } |
| 8 f("make it generic", 0, 0); |
| 9 |
| 10 (function TestIsConcatSpreadableProtector() { |
| 11 var o = {length: 1, '0': 99}; |
| 12 %OptimizeObjectForAddingMultipleProperties(o, 0); |
| 13 f(o, Symbol.isConcatSpreadable, true); |
| 14 assertEquals([99], [].concat(o)); |
| 15 })(); |
| 16 |
| 17 (function TestSpeciesProtector() { |
| 18 function MyArray() {} |
| 19 assertTrue(%SpeciesProtector()); |
| 20 f(Array.prototype, "constructor", MyArray); |
| 21 assertFalse(%SpeciesProtector()); |
| 22 })(); |
OLD | NEW |