mirror of https://github.com/tc39/test262.git
add esid to array/prototype/unshift tests
This commit is contained in:
parent
2d13a07cc1
commit
b2737b2d82
|
@ -6,6 +6,7 @@ info: >
|
|||
The arguments are prepended to the start of the array, such that
|
||||
their order within the array is the same as the order in which they appear in
|
||||
the argument list
|
||||
esid: sec-array.prototype.unshift
|
||||
es5id: 15.4.4.13_A1_T1
|
||||
description: Checking case when unsift is given no arguments or one argument
|
||||
---*/
|
||||
|
|
|
@ -6,6 +6,7 @@ info: >
|
|||
The arguments are prepended to the start of the array, such that
|
||||
their order within the array is the same as the order in which they appear in
|
||||
the argument list
|
||||
esid: sec-array.prototype.unshift
|
||||
es5id: 15.4.4.13_A1_T2
|
||||
description: Checking case when unsift is given many arguments
|
||||
---*/
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
info: >
|
||||
The unshift function is intentionally generic.
|
||||
It does not require that its this value be an Array object
|
||||
esid: sec-array.prototype.unshift
|
||||
es5id: 15.4.4.13_A2_T1
|
||||
description: >
|
||||
The arguments are prepended to the start of the array, such that
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
info: >
|
||||
The unshift function is intentionally generic.
|
||||
It does not require that its this value be an Array object
|
||||
esid: sec-array.prototype.unshift
|
||||
es5id: 15.4.4.13_A2_T2
|
||||
description: >
|
||||
The arguments are prepended to the start of the array, such that
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
info: >
|
||||
The unshift function is intentionally generic.
|
||||
It does not require that its this value be an Array object
|
||||
esid: sec-array.prototype.unshift
|
||||
es5id: 15.4.4.13_A2_T3
|
||||
description: >
|
||||
Operator use ToNumber from length. If Type(value) is Object,
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
info: Check ToLength(length) for non Array objects
|
||||
esid: sec-array.prototype.unshift
|
||||
es5id: 15.4.4.13_A3_T2
|
||||
description: length = -4294967295
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
info: "[[Get]], [[Delete]] from not an inherited property"
|
||||
esid: sec-array.prototype.unshift
|
||||
es5id: 15.4.4.13_A4_T1
|
||||
description: >
|
||||
[[Prototype]] of Array instance is Array.prototype, [[Prototype]
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
info: "[[Get]], [[Delete]] from not an inherited property"
|
||||
esid: sec-array.prototype.unshift
|
||||
es5id: 15.4.4.13_A4_T2
|
||||
description: >
|
||||
[[Prototype]] of Array instance is Array.prototype, [[Prototype]
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
info: The unshift property of Array can't be used as constructor
|
||||
esid: sec-array.prototype.unshift
|
||||
es5id: 15.4.4.13_A5.7
|
||||
description: >
|
||||
If property does not implement the internal [[Construct]] method,
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-array.prototype.unshift
|
||||
es6id: 22.1.3.28
|
||||
description: >
|
||||
Array.prototype.unshift.name is "unshift".
|
||||
|
|
Loading…
Reference in New Issue