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 | |
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() {} | |
Camillo Bruni
2017/04/19 09:06:32
assertTrue(%SpeciesProtector());
Jakob Kummerow
2017/04/19 13:11:46
Done.
| |
19 f(Array.prototype, "constructor", MyArray); | |
20 assertFalse(%SpeciesProtector()); | |
21 })(); | |
OLD | NEW |