Remove duplicated es[56]id if esid is present

This commit is contained in:
Leo Balter 2019-08-02 12:18:50 -04:00 committed by Rick Waldron
parent ddfe24afe3
commit ff9763729d
4216 changed files with 0 additions and 4493 deletions

View File

@ -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.

View File

@ -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]

View File

@ -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");

View File

@ -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:

View File

@ -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: |

View File

@ -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

View File

@ -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 ] ] )

View File

@ -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 ] ] )

View File

@ -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 ] ] )

View File

@ -4,7 +4,6 @@
/*---
description: Elements added after the call to from
esid: sec-array.from
es6id: 22.1.2.1
---*/
var arrayIndex = -1;

View File

@ -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];

View File

@ -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];

View File

@ -4,7 +4,6 @@
/*---
description: Passing a valid array
esid: sec-array.from
es6id: 22.1.2.1
---*/
var array = [0, 'foo', , Infinity];

View File

@ -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)
---*/

View File

@ -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: |
[...]

View File

@ -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 ] ] )

View File

@ -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 ] ] )

View File

@ -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: |
[...]

View File

@ -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: |

View File

@ -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: |
[...]

View File

@ -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: |
[...]

View File

@ -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: |
[...]

View File

@ -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: |

View File

@ -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: |
[...]

View File

@ -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: |
[...]

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |
[...]

View File

@ -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: |
[...]

View File

@ -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: |
[...]

View File

@ -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: |
[...]

View File

@ -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 ] ] )

View File

@ -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 ] ] )

View File

@ -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
---*/

View File

@ -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: |

View File

@ -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: |

View File

@ -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.
---*/

View File

@ -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: |

View File

@ -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: |
[...]

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |
[...]

View File

@ -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
---*/

View File

@ -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: |

View File

@ -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)

View File

@ -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)

View File

@ -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]
---*/

View File

@ -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]
---*/

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -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]
---*/

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -5,7 +5,6 @@
/*---
esid: sec-array.prototype.concat
es6id: 22.1.3.1_3
description: Array.prototype.concat length throws
features: [Symbol.isConcatSpreadable]
---*/

View File

@ -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);

View File

@ -5,7 +5,6 @@
/*---
esid: sec-array.prototype.concat
es6id: 22.1.3.1_3
description: array-concat-non-array
includes: [compareArray.js]
---*/

View File

@ -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]
---*/

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -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]
---*/

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -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

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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

View File

@ -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`

View File

@ -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: |

View File

@ -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

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |
[...]

View File

@ -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

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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: |

View File

@ -3,7 +3,6 @@
/*---
esid: sec-array.prototype.concat
es6id: 22.1.3.1
description: >
Array.prototype.concat.name is "concat".
info: |

View File

@ -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: |

View File

@ -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: |

View File

@ -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