mirror of
https://github.com/tc39/test262.git
synced 2025-07-25 15:04:43 +02:00
Add ES6 IDs
This commit is contained in:
parent
9c42c10e48
commit
663f6776aa
@ -4,6 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
info: Result of applying "typeof" operator to boolean is "boolean"
|
info: Result of applying "typeof" operator to boolean is "boolean"
|
||||||
es5id: 11.4.3_A3.3
|
es5id: 11.4.3_A3.3
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: typeof (boolean value) === "boolean"
|
description: typeof (boolean value) === "boolean"
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ info: >
|
|||||||
There are two types of Function objects. Internal functions
|
There are two types of Function objects. Internal functions
|
||||||
are built-in objects of the language, such as parseInt and Math.exp
|
are built-in objects of the language, such as parseInt and Math.exp
|
||||||
es5id: 10.1.1_A2_T1
|
es5id: 10.1.1_A2_T1
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: Checking types of parseInt and Math.exp
|
description: Checking types of parseInt and Math.exp
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
info: Operator "typeof" uses GetValue
|
info: Operator "typeof" uses GetValue
|
||||||
es5id: 11.4.3_A2_T1
|
es5id: 11.4.3_A2_T1
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: Either Type(x) is not Reference or GetBase(x) is not null
|
description: Either Type(x) is not Reference or GetBase(x) is not null
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ info: >
|
|||||||
Result of applying "typeof" operator to the object that is native and
|
Result of applying "typeof" operator to the object that is native and
|
||||||
implements [[Call]] is "function"
|
implements [[Call]] is "function"
|
||||||
es5id: 11.4.3_A3.7
|
es5id: 11.4.3_A3.7
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: typeof (object with [[Call]]) === "function"
|
description: typeof (object with [[Call]]) === "function"
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ info: >
|
|||||||
Result of applying "typeof" operator to the object that is native and
|
Result of applying "typeof" operator to the object that is native and
|
||||||
doesn't implement [[Call]] is "object"
|
doesn't implement [[Call]] is "object"
|
||||||
es5id: 11.4.3_A3.6
|
es5id: 11.4.3_A3.6
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: typeof (object without [[Call]]) === "object"
|
description: typeof (object without [[Call]]) === "object"
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
info: Result of applying "typeof" operator to null is "object"
|
info: Result of applying "typeof" operator to null is "object"
|
||||||
es5id: 11.4.3_A3.2
|
es5id: 11.4.3_A3.2
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: typeof null === "object"
|
description: typeof null === "object"
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
info: Result of appying "typeof" operator to number is "number"
|
info: Result of appying "typeof" operator to number is "number"
|
||||||
es5id: 11.4.3_A3.4
|
es5id: 11.4.3_A3.4
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: typeof (number value) === "number"
|
description: typeof (number value) === "number"
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
info: Result of appying "typeof" operator to string is "string"
|
info: Result of appying "typeof" operator to string is "string"
|
||||||
es5id: 11.4.3_A3.5
|
es5id: 11.4.3_A3.5
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: typeof (string value) === "string"
|
description: typeof (string value) === "string"
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ info: >
|
|||||||
White Space and Line Terminator between "typeof" and UnaryExpression are
|
White Space and Line Terminator between "typeof" and UnaryExpression are
|
||||||
allowed
|
allowed
|
||||||
es5id: 11.4.3_A1
|
es5id: 11.4.3_A1
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: Checking by using eval
|
description: Checking by using eval
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
info: Result of applying "typeof" operator to undefined is "undefined"
|
info: Result of applying "typeof" operator to undefined is "undefined"
|
||||||
es5id: 11.4.3_A3.1
|
es5id: 11.4.3_A3.1
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: typeof undefined === "undefined"
|
description: typeof undefined === "undefined"
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
info: Operator "typeof" uses GetValue
|
info: Operator "typeof" uses GetValue
|
||||||
es5id: 11.4.3_A2_T2
|
es5id: 11.4.3_A2_T2
|
||||||
|
es6id: 12.5.6.1
|
||||||
description: If GetBase(x) is null, return "undefined"
|
description: If GetBase(x) is null, return "undefined"
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user