Skip to content
Snippets Groups Projects
Commit 663f6776 authored by Mike Pennisi's avatar Mike Pennisi
Browse files

Add ES6 IDs

parent 9c42c10e
No related branches found
No related tags found
No related merge requests found
......@@ -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"
---*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment