Add ES6 IDs

This commit is contained in:
Mike Pennisi 2015-04-07 16:42:12 -04:00
parent 9c42c10e48
commit 663f6776aa
11 changed files with 11 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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