mirror of
https://github.com/tc39/test262.git
synced 2025-07-27 07:54:41 +02:00
update esid on Boolean/prototype tests
This commit is contained in:
parent
1b911a8f8a
commit
8b3dddc570
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
The initial value of Boolean.prototype is the Boolean
|
||||
prototype object
|
||||
esid: sec-boolean.prototype
|
||||
es5id: 15.6.3.1_A1
|
||||
description: Checking Boolean.prototype property
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Boolean.prototype has the attribute ReadOnly
|
||||
esid: sec-boolean.prototype
|
||||
es5id: 15.6.3.1_A2
|
||||
description: Checking if varying the Boolean.prototype property fails
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Boolean.prototype has the attribute DontDelete
|
||||
esid: sec-boolean.prototype
|
||||
es5id: 15.6.3.1_A3
|
||||
description: Checking if deleting the Boolean.prototype property fails
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Boolean.prototype has the attribute DontEnum
|
||||
esid: sec-boolean.prototype
|
||||
es5id: 15.6.3.1_A4
|
||||
description: Checking if enumerating the Boolean.prototype property fails
|
||||
---*/
|
||||
|
@ -6,6 +6,7 @@ info: >
|
||||
The Boolean prototype object is itself a Boolean object
|
||||
(its [[Class]] is "Boolean") whose value is false
|
||||
es5id: 15.6.4_A1
|
||||
esid: sec-properties-of-the-boolean-prototype-object
|
||||
description: Checking type and value of Boolean.prototype
|
||||
---*/
|
||||
|
||||
|
@ -6,6 +6,7 @@ info: >
|
||||
The value of the internal [[Prototype]] property of the Boolean
|
||||
prototype object is the Object prototype object
|
||||
es5id: 15.6.4_A2
|
||||
esid: sec-properties-of-the-boolean-prototype-object
|
||||
description: Checking Object.prototype.isPrototypeOf(Boolean.prototype)
|
||||
---*/
|
||||
|
||||
|
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
The initial value of Boolean.prototype.constructor is the
|
||||
built-in Boolean constructor
|
||||
esid: sec-boolean-constructor
|
||||
es5id: 15.6.4.1_A1
|
||||
description: Compare Boolean.prototype.constructor with Boolean
|
||||
---*/
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.tostring
|
||||
info: >
|
||||
toString: If this boolean value is true, then the string "true"
|
||||
is returned, otherwise, this boolean value must be false, and the string
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.tostring
|
||||
info: >
|
||||
toString: If this boolean value is true, then the string "true"
|
||||
is returned, otherwise, this boolean value must be false, and the string
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.tostring
|
||||
info: >
|
||||
The toString function is not generic, it cannot be transferred
|
||||
to other kinds of objects for use as a method and there is should be
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.tostring
|
||||
info: >
|
||||
The toString function is not generic, it cannot be transferred
|
||||
to other kinds of objects for use as a method and there is should be
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.tostring
|
||||
info: >
|
||||
The toString function is not generic, it cannot be transferred
|
||||
to other kinds of objects for use as a method and there is should be
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.tostring
|
||||
info: >
|
||||
The toString function is not generic, it cannot be transferred
|
||||
to other kinds of objects for use as a method and there is should be
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.tostring
|
||||
info: >
|
||||
The toString function is not generic, it cannot be transferred
|
||||
to other kinds of objects for use as a method and there is should be
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.tostring
|
||||
es6id: 19.3.3.2
|
||||
description: >
|
||||
Boolean.prototype.toString.length is 0.
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.tostring
|
||||
es6id: 19.3.3.2
|
||||
description: >
|
||||
Boolean.prototype.toString.name is "toString".
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Boolean.prototype.valueOf() returns this boolean value
|
||||
esid: sec-boolean.prototype.valueof
|
||||
es5id: 15.6.4.3_A1_T1
|
||||
description: no arguments
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Boolean.prototype.valueOf() returns this boolean value
|
||||
esid: sec-boolean.prototype.valueof
|
||||
es5id: 15.6.4.3_A1_T2
|
||||
description: calling with argument
|
||||
---*/
|
||||
|
@ -6,6 +6,7 @@ info: >
|
||||
The valueOf function is not generic, it cannot be transferred
|
||||
to other kinds of objects for use as a method and there is should be
|
||||
a TypeError exception if its this value is not a Boolean object
|
||||
esid: sec-boolean.prototype.valueof
|
||||
es5id: 15.6.4.3_A2_T1
|
||||
description: transferring to the String objects
|
||||
---*/
|
||||
|
@ -6,6 +6,7 @@ info: >
|
||||
The valueOf function is not generic, it cannot be transferred
|
||||
to other kinds of objects for use as a method and there is should be
|
||||
a TypeError exception if its this value is not a Boolean object
|
||||
esid: sec-boolean.prototype.valueof
|
||||
es5id: 15.6.4.3_A2_T2
|
||||
description: transferring to the Number objects
|
||||
---*/
|
||||
|
@ -6,6 +6,7 @@ info: >
|
||||
The valueOf function is not generic, it cannot be transferred
|
||||
to other kinds of objects for use as a method and there is should be
|
||||
a TypeError exception if its this value is not a Boolean object
|
||||
esid: sec-boolean.prototype.valueof
|
||||
es5id: 15.6.4.3_A2_T3
|
||||
description: transferring to the Date objects
|
||||
---*/
|
||||
|
@ -6,6 +6,7 @@ info: >
|
||||
The valueOf function is not generic, it cannot be transferred
|
||||
to other kinds of objects for use as a method and there is should be
|
||||
a TypeError exception if its this value is not a Boolean object
|
||||
esid: sec-boolean.prototype.valueof
|
||||
es5id: 15.6.4.3_A2_T4
|
||||
description: transferring to the Object objects
|
||||
---*/
|
||||
|
@ -6,6 +6,7 @@ info: >
|
||||
The valueOf function is not generic, it cannot be transferred
|
||||
to other kinds of objects for use as a method and there is should be
|
||||
a TypeError exception if its this value is not a Boolean object
|
||||
esid: sec-boolean.prototype.valueof
|
||||
es5id: 15.6.4.3_A2_T5
|
||||
description: transferring to the other objects
|
||||
---*/
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.valueof
|
||||
es6id: 19.3.3.3
|
||||
description: >
|
||||
Boolean.prototype.valueOf.length is 0.
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-boolean.prototype.valueof
|
||||
es6id: 19.3.3.3
|
||||
description: >
|
||||
Boolean.prototype.valueOf.name is "valueOf".
|
||||
|
Loading…
x
Reference in New Issue
Block a user