From d854cfe266b7d3bc5f7741ce568015390317af86 Mon Sep 17 00:00:00 2001 From: Lyza Danger Gardner Date: Thu, 29 Jun 2017 13:36:48 -0400 Subject: [PATCH] Add esid --- test/built-ins/eval/length-enumerable.js | 2 ++ test/built-ins/eval/length-non-configurable.js | 2 ++ test/built-ins/eval/length-non-writable.js | 2 ++ test/built-ins/eval/length-value.js | 2 ++ test/built-ins/eval/name.js | 1 + test/built-ins/eval/no-construct.js | 2 ++ test/built-ins/eval/no-proto.js | 2 ++ test/built-ins/eval/prop-desc-enumerable.js | 2 ++ 8 files changed, 15 insertions(+) diff --git a/test/built-ins/eval/length-enumerable.js b/test/built-ins/eval/length-enumerable.js index a2c5c52f31..3123a7c29d 100644 --- a/test/built-ins/eval/length-enumerable.js +++ b/test/built-ins/eval/length-enumerable.js @@ -4,6 +4,8 @@ /*--- info: The length property of eval has the attribute DontEnum es5id: 15.1.2.1_A4.1 +es6id: 18.2.1 +esid: sec-eval-x description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/eval/length-non-configurable.js b/test/built-ins/eval/length-non-configurable.js index eea3d65d1f..53ae85265b 100644 --- a/test/built-ins/eval/length-non-configurable.js +++ b/test/built-ins/eval/length-non-configurable.js @@ -4,6 +4,8 @@ /*--- info: The length property of eval does not have the attribute DontDelete es5id: 15.1.2.1_A4.2 +es6id: 18.2.1 +esid: sec-eval-x description: Checking use hasOwnProperty, delete ---*/ diff --git a/test/built-ins/eval/length-non-writable.js b/test/built-ins/eval/length-non-writable.js index 82aad23995..f4b2b89645 100644 --- a/test/built-ins/eval/length-non-writable.js +++ b/test/built-ins/eval/length-non-writable.js @@ -4,6 +4,8 @@ /*--- info: The length property of eval has the attribute ReadOnly es5id: 15.1.2.1_A4.3 +es6id: 18.2.1 +esid: sec-eval-x description: Checking if varying the length property fails includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/eval/length-value.js b/test/built-ins/eval/length-value.js index b7a690e454..2e8a4acff7 100644 --- a/test/built-ins/eval/length-value.js +++ b/test/built-ins/eval/length-value.js @@ -4,6 +4,8 @@ /*--- info: The length property of eval is 1 es5id: 15.1.2.1_A4.4 +es6id: 18.2.1 +esid: sec-eval-x description: eval.length === 1 ---*/ diff --git a/test/built-ins/eval/name.js b/test/built-ins/eval/name.js index 2b844d22a6..c54369721b 100644 --- a/test/built-ins/eval/name.js +++ b/test/built-ins/eval/name.js @@ -3,6 +3,7 @@ /*--- es6id: 18.2.1 +esid: sec-eval-x description: > eval.name is "eval". info: > diff --git a/test/built-ins/eval/no-construct.js b/test/built-ins/eval/no-construct.js index 130fe7c5d1..8c3997512d 100644 --- a/test/built-ins/eval/no-construct.js +++ b/test/built-ins/eval/no-construct.js @@ -4,6 +4,8 @@ /*--- info: The eval property can't be used as constructor es5id: 15.1.2.1_A4.7 +es6id: 18.2.1 +esid: sec-eval-x description: > If property does not implement the internal [[Construct]] method, throw a TypeError exception diff --git a/test/built-ins/eval/no-proto.js b/test/built-ins/eval/no-proto.js index c03b573d07..481b5734d1 100644 --- a/test/built-ins/eval/no-proto.js +++ b/test/built-ins/eval/no-proto.js @@ -4,6 +4,8 @@ /*--- info: The eval property has not prototype property es5id: 15.1.2.1_A4.6 +es6id: 18.2.1 +esid: sec-eval-x description: Checking eval.prototype ---*/ diff --git a/test/built-ins/eval/prop-desc-enumerable.js b/test/built-ins/eval/prop-desc-enumerable.js index da88a7666a..e34b1a2923 100644 --- a/test/built-ins/eval/prop-desc-enumerable.js +++ b/test/built-ins/eval/prop-desc-enumerable.js @@ -4,6 +4,8 @@ /*--- info: The eval property has the attribute DontEnum es5id: 15.1.2.1_A4.5 +es6id: 18.2.1 +esid: sec-eval-x description: Checking use propertyIsEnumerable, for-in ---*/