esid in case file instead of template file

This commit is contained in:
Valerie R Young 2017-10-17 15:59:00 -04:00
parent 23bc183bb8
commit 3ea3651396
41 changed files with 34 additions and 7 deletions

View File

@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: prod-FieldDefinition
desc: Computed property names
info: |
ClassElement:

View File

@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: prod-FieldDefinition
desc: Computed property symbol names
info: |
ClassElement:

View File

@ -6,6 +6,7 @@ path: language/statements/class/fields-same-line-async-gen-
name: field definitions after an async generator in the same line
features: [class-fields, async-iteration]
flags: [async]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -6,6 +6,7 @@ path: language/statements/class/fields-same-line-async-method-
name: field definitions after an async method in the same line
features: [class-fields, async-functions]
flags: [async]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-after-same-line-gen-
name: field definitions after a generator in the same line
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-after-same-line-method-
name: field definitions after a method in the same line
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -6,6 +6,7 @@ path: language/statements/class/fields-after-same-line-static-async-gen-
name: field definitions after a static async generator in the same line
features: [class-fields, async-iteration]
flags: [async]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -6,6 +6,7 @@ path: language/statements/class/fields-after-same-line-static-async-method-
name: field definitions after a static async method in the same line
features: [class-fields, async-functions]
flags: [async]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-after-same-line-static-gen-
name: field definitions after a static generator in the same line
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-after-same-line-static-method-
name: field definitions after a static method in the same line
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-multiple-definitions-
name: multiple fields definitions
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-multiple-stacked-definitions-
name: multiple stacked fields definitions through ASI
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-new-no-sc-line-method-
name: field definitions followed by a method in a new line without a semicolon
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-new-sc-line-gen-
name: field definitions followed by a method in a new line with a semicolon
features: [class-fields, generators]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-new-sc-line-method-
name: field definitions followed by a method in a new line with a semicolon
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-regular-definitions-
name: regular fields defintion
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-same-line-gen-
name: field definitions followed by a generator method in the same line
features: [class-fields, generators]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-same-line-method-
name: field definitions followed by a method in the same line
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -5,6 +5,7 @@
path: language/statements/class/fields-wrapped-in-sc-
name: fields definition wrapped in semicolons
features: [class-fields]
esid: prod-FieldDefinition
---*/
class C {

View File

@ -6,6 +6,7 @@ path: language/expressions/class/fields-same-line-async-gen-
name: field definitions after an async generator in the same line
features: [class-fields, async-iteration]
flags: [async]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -6,6 +6,7 @@ path: language/expressions/class/fields-same-line-async-method-
name: field definitions after an async method in the same line
features: [class-fields, async-functions]
flags: [async]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-after-same-line-gen-
name: field definitions after a generator in the same line
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-after-same-line-method-
name: field definitions after a method in the same line
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -6,6 +6,7 @@ path: language/expressions/class/fields-after-same-line-static-async-gen-
name: field definitions after a static async generator in the same line
features: [class-fields, async-iteration]
flags: [async]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -6,6 +6,7 @@ path: language/expressions/class/fields-after-same-line-static-async-method-
name: field definitions after a static async method in the same line
features: [class-fields, async-functions]
flags: [async]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-after-same-line-static-gen-
name: field definitions after a static generator in the same line
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-after-same-line-static-method-
name: field definitions after a static method in the same line
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-multiple-definitions-
name: multiple fields definitions
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-multiple-stacked-definitions-
name: multiple stacked fields definitions through ASI
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-new-no-sc-line-method-
name: field definitions followed by a method in a new line without a semicolon
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-new-sc-line-gen-
name: field definitions followed by a method in a new line with a semicolon
features: [class-fields, generators]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-new-sc-line-method-
name: field definitions followed by a method in a new line with a semicolon
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-regular-definitions-
name: regular fields defintion
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-same-line-gen-
name: field definitions followed by a generator method in the same line
features: [class-fields, generators]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-same-line-method-
name: field definitions followed by a method in the same line
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -5,6 +5,7 @@
path: language/expressions/class/fields-wrapped-in-sc-
name: fields definition wrapped in semicolons
features: [class-fields]
esid: prod-FieldDefinition
---*/
var C = class {

View File

@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: prod-FieldDefinition
desc: Literal property names
info: |
ClassElement:

View File

@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: prod-FieldDefinition
desc: Static Computed property names
info: |
ClassElement:

View File

@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: prod-FieldDefinition
desc: Static computed property symbol names
info: |
ClassElement:

View File

@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: prod-FieldDefinition
desc: Static literal property names
info: |
ClassElement:

View File

@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: prod-FieldDefinition
desc: String literal names
info: |
ClassElement: