mirror of https://github.com/tc39/test262.git
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"
|
||||
es5id: 11.4.3_A3.3
|
||||
es6id: 12.5.6.1
|
||||
description: typeof (boolean value) === "boolean"
|
||||
---*/
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ info: >
|
|||
There are two types of Function objects. Internal functions
|
||||
are built-in objects of the language, such as parseInt and Math.exp
|
||||
es5id: 10.1.1_A2_T1
|
||||
es6id: 12.5.6.1
|
||||
description: Checking types of parseInt and Math.exp
|
||||
---*/
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
/*---
|
||||
info: Operator "typeof" uses GetValue
|
||||
es5id: 11.4.3_A2_T1
|
||||
es6id: 12.5.6.1
|
||||
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
|
||||
implements [[Call]] is "function"
|
||||
es5id: 11.4.3_A3.7
|
||||
es6id: 12.5.6.1
|
||||
description: typeof (object with [[Call]]) === "function"
|
||||
---*/
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ info: >
|
|||
Result of applying "typeof" operator to the object that is native and
|
||||
doesn't implement [[Call]] is "object"
|
||||
es5id: 11.4.3_A3.6
|
||||
es6id: 12.5.6.1
|
||||
description: typeof (object without [[Call]]) === "object"
|
||||
---*/
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
/*---
|
||||
info: Result of applying "typeof" operator to null is "object"
|
||||
es5id: 11.4.3_A3.2
|
||||
es6id: 12.5.6.1
|
||||
description: typeof null === "object"
|
||||
---*/
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
/*---
|
||||
info: Result of appying "typeof" operator to number is "number"
|
||||
es5id: 11.4.3_A3.4
|
||||
es6id: 12.5.6.1
|
||||
description: typeof (number value) === "number"
|
||||
---*/
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
/*---
|
||||
info: Result of appying "typeof" operator to string is "string"
|
||||
es5id: 11.4.3_A3.5
|
||||
es6id: 12.5.6.1
|
||||
description: typeof (string value) === "string"
|
||||
---*/
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ info: >
|
|||
White Space and Line Terminator between "typeof" and UnaryExpression are
|
||||
allowed
|
||||
es5id: 11.4.3_A1
|
||||
es6id: 12.5.6.1
|
||||
description: Checking by using eval
|
||||
---*/
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
/*---
|
||||
info: Result of applying "typeof" operator to undefined is "undefined"
|
||||
es5id: 11.4.3_A3.1
|
||||
es6id: 12.5.6.1
|
||||
description: typeof undefined === "undefined"
|
||||
---*/
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
/*---
|
||||
info: Operator "typeof" uses GetValue
|
||||
es5id: 11.4.3_A2_T2
|
||||
es6id: 12.5.6.1
|
||||
description: If GetBase(x) is null, return "undefined"
|
||||
---*/
|
||||
|
||||
|
|
Loading…
Reference in New Issue