mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
Remove duplicated es[56]id if esid is present
This commit is contained in:
parent
ddfe24afe3
commit
ff9763729d
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-get-array-@@species
|
||||
es6id: 24.1.2.5
|
||||
description: Return value of @@species accessor method
|
||||
info: |
|
||||
1. Return the this value.
|
||||
|
@ -5,7 +5,6 @@
|
||||
info: |
|
||||
Array has a property at `Symbol.species`
|
||||
esid: sec-get-array-@@species
|
||||
es6id: 22.1.2.5
|
||||
author: Sam Mikes
|
||||
description: Array[Symbol.species] exists per spec
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -6,7 +6,6 @@ description: Testing descriptor property of Array.from
|
||||
includes:
|
||||
- propertyHelper.js
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
---*/
|
||||
|
||||
verifyWritable(Array, "from");
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: '`name` property'
|
||||
info: |
|
||||
ES6 Section 17:
|
||||
|
@ -3,7 +3,6 @@
|
||||
// found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: >
|
||||
The length property of the Array.from method is 1.
|
||||
info: |
|
||||
|
@ -3,7 +3,6 @@
|
||||
// found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: >
|
||||
If this is a constructor, and items doesn't have an @@iterator,
|
||||
returns a new instance of this
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Map function without thisArg on non strict mode
|
||||
info: |
|
||||
22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] )
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Map function without thisArg on strict mode
|
||||
info: |
|
||||
22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] )
|
||||
|
@ -3,7 +3,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Calling from with a valid map function with thisArg
|
||||
info: |
|
||||
22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] )
|
||||
|
@ -4,7 +4,6 @@
|
||||
/*---
|
||||
description: Elements added after the call to from
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
---*/
|
||||
|
||||
var arrayIndex = -1;
|
||||
|
@ -6,7 +6,6 @@ description: >
|
||||
Elements deleted after the call started and before visited are not
|
||||
visited
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
---*/
|
||||
|
||||
var originalArray = [0, 1, -2, 4, -8, 16];
|
||||
|
@ -4,7 +4,6 @@
|
||||
/*---
|
||||
description: Elements are updated after the call to from
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
---*/
|
||||
|
||||
var array = [127, 4, 8, 16, 32, 64, 128];
|
||||
|
@ -4,7 +4,6 @@
|
||||
/*---
|
||||
description: Passing a valid array
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
---*/
|
||||
|
||||
var array = [0, 'foo', , Infinity];
|
||||
|
@ -3,7 +3,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Testing Array.from when passed a String
|
||||
author: Hank Yates (hankyates@gmail.com)
|
||||
---*/
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Error accessing items' `Symbol.iterator` attribute
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Return empty array if items argument is an ArrayBuffer
|
||||
info: |
|
||||
22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] )
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Throws a TypeError if items argument is null
|
||||
info: |
|
||||
22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] )
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Error advancing iterator
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: >
|
||||
Error creating object with custom constructor (traversed via iterator)
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Creating object with custom constructor (traversed via iterator)
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Error creating iterator object
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Error retrieving value of iterator result
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: >
|
||||
Arguments of mapping function (traversed via iterator)
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Error invoking map function (traversed via iterator)
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Value returned by mapping function (traversed via iterator)
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: >
|
||||
`this` value of mapping function with custom `this` argument (traversed via iterator)
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: >
|
||||
`this` value of mapping function in non-strict mode (traversed via iterator)
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: >
|
||||
`this` value of mapping function in strict mode (traversed via iterator)
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Error setting property on result value (traversed via iterator)
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Setting property on result value (traversed via iterator)
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Error setting length of object (traversed via iterator)
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Setting length of object (traversed via iterator)
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Throws a TypeError if mapFn is not callable
|
||||
info: |
|
||||
22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] )
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.from
|
||||
es6id: 22.1.2.1
|
||||
description: Throws a TypeError if mapFn is not callable (Symbol)
|
||||
info: |
|
||||
22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] )
|
||||
|
@ -3,7 +3,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.isarray
|
||||
es5id: 15.4.3.2-0-4
|
||||
description: Array.isArray return false if its argument is not an Array
|
||||
---*/
|
||||
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Array.of.length value and property descriptor
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Array.of.name value and property descriptor
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Array.of is not a constructor.
|
||||
---*/
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Array.of property descriptor
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: Default [[Prototype]] value derived from realm of the constructor
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Returns an instance from a custom constructor.
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Returns a new Array.
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Return abrupt from this' constructor
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Return abrupt from Data Property creation
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Return abrupt from Data Property creation
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Return abrupt from setting the length property.
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.of
|
||||
es6id: 22.1.2.3
|
||||
description: >
|
||||
Calls the length setter if available
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array-constructor-array
|
||||
es6id: 21.1.1.1
|
||||
description: Default [[Prototype]] value derived from realm of the newTarget
|
||||
info: |
|
||||
[...]
|
||||
|
@ -11,7 +11,6 @@ info: |
|
||||
should be writable and configurable, but not enumerable.
|
||||
includes: [propertyHelper.js]
|
||||
features: [Symbol.iterator]
|
||||
es6id: 22.1.3.30
|
||||
esid: sec-array.prototype-@@iterator
|
||||
---*/
|
||||
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.prototype-@@unscopables
|
||||
es6id: 22.1.3.31
|
||||
description: >
|
||||
Property descriptor for initial value of `Symbol.unscopables` property
|
||||
info: |
|
||||
|
@ -3,7 +3,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es5id: 15.4.4.4-5-b-iii-3-b-1
|
||||
description: >
|
||||
Array.prototype.concat will concat an Array when index property
|
||||
(read-only) exists in Array.prototype (Step 5.b.iii.3.b)
|
||||
|
@ -3,7 +3,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es5id: 15.4.4.4-5-c-i-1
|
||||
description: >
|
||||
Array.prototype.concat will concat an Array when index property
|
||||
(read-only) exists in Array.prototype (Step 5.c.i)
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat array like length to string throws
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
---*/
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat array like length valueOf throws
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
---*/
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat array like negative length
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat array like primitive non number length
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat array like string length
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat array like to length throws
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
---*/
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat array like
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat holey sloppy arguments
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat large typed array
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat length throws
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
---*/
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat no prototype
|
||||
---*/
|
||||
assert.sameValue(Array.prototype.concat.prototype, void 0);
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: array-concat-non-array
|
||||
includes: [compareArray.js]
|
||||
---*/
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat sloppy arguments throws
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
---*/
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat sloppy arguments with dupes
|
||||
flags: [noStrict]
|
||||
includes: [compareArray.js]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat sloppy arguments
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat small typed array
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat Symbol.isConcatSpreadable boolean wrapper
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat Symbol.isConcatSpreadable function
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat Symbol.isConcatSpreadable getter throws
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
---*/
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat Symbol.isConcatSpreadable number wrapper
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat Symbol.isConcatSpreadable reg exp
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat Symbol.isConcatSpreadable sparse object
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat Symbol.isConcatSpreadable string wrapper
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1_3
|
||||
description: Array.prototype.concat strict arguments
|
||||
includes: [compareArray.js]
|
||||
features: [Symbol.isConcatSpreadable]
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: >
|
||||
Behavior when `constructor` property is neither an Object nor undefined
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: Abrupt completion from `constructor` property access
|
||||
info: |
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: Constructor is ignored for non-Array values
|
||||
info: |
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: Prefer Array constructor of current realm record
|
||||
info: |
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: Accept non-Array constructors from other realms
|
||||
info: |
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: Species constructor of a Proxy object whose target is an array
|
||||
info: |
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: Abrupt completion from constructor that is a revoked Proxy object
|
||||
info: |
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: Species constructor returns an abrupt completion
|
||||
info: |
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: >
|
||||
Behavior when the @@species attribute is a non-constructor object
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: >
|
||||
A null value for the @@species constructor is interpreted as `undefined`
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: Abrupt completion from `@@species` property access
|
||||
info: |
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: >
|
||||
An undefined value for the @@species constructor triggers the creation of
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: Species constructor is used to create a new instance
|
||||
info: |
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 22.1.3.1
|
||||
esid: sec-array.prototype.concat
|
||||
description: Error thrown when accessing `Symbol.isConcatSpreadable` property
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-isconcatspreadable
|
||||
es6id: 22.1.3.1.1
|
||||
description: Revoked proxy value produces a TypeError when supplied to IsArray
|
||||
info: |
|
||||
[...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-isconcatspreadable
|
||||
es6id: 22.1.3.1.1
|
||||
description: >
|
||||
Revoked proxy value produces a TypeError during access of
|
||||
`Symbol.isConcatSpreadable` property
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-isconcatspreadable
|
||||
es6id: 22.1.3.1.1
|
||||
description: >
|
||||
Proxies who final targets are arrays are considered spreadable
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1
|
||||
description: >
|
||||
The `Symbol.isConcatSpreadable` property is defined and coerces to `false`
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1
|
||||
description: >
|
||||
The `Symbol.isConcatSpreadable` property is defined and coerces to `true`
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1
|
||||
description: >
|
||||
The `Symbol.isConcatSpreadable` property is defined as the value `undefined`
|
||||
info: |
|
||||
|
@ -3,7 +3,6 @@
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.concat
|
||||
es6id: 22.1.3.1
|
||||
description: >
|
||||
Array.prototype.concat.name is "concat".
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.prototype.copywithin
|
||||
es6id: 22.1.3.3
|
||||
description: >
|
||||
end argument is coerced to an integer values.
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.prototype.copywithin
|
||||
es6id: 22.1.3.3
|
||||
description: >
|
||||
start argument is coerced to an integer value.
|
||||
info: |
|
||||
|
@ -2,7 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-array.prototype.copywithin
|
||||
es6id: 22.1.3.3
|
||||
description: >
|
||||
target argument is coerced to an integer value.
|
||||
info: |
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user