Merge pull request #1293 from bocoup/esid-fix

fix: esid in case file instead of template file
This commit is contained in:
Leo Balter 2017-10-17 17:52:03 -04:00 committed by GitHub
commit 315eca2bbd
280 changed files with 272 additions and 51 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:

View File

@ -1,44 +0,0 @@
// Copyright 2011-2012 Norbert Lindenberg. All rights reserved.
// Copyright 2012 Mozilla Corporation. All rights reserved.
// Copyright 2017 Microsoft Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: intl.getcanonicallocales
description: Tests the getCanonicalLocales for locale tags.
info: >
Intl.getCanonicalLocales (locales)
1. Let ll be ? CanonicalizeLocaleList(locales).
2. Return CreateArrayFromList(ll).
---*/
var canonicalizedTags = {
"de": ["de"],
"de-DE": ["de-DE", "de"],
"DE-de": ["de-DE", "de"],
"cmn": ["cmn"],
"CMN-hANS": ["cmn-Hans", "cmn"],
"cmn-hans-cn": ["cmn-Hans-CN", "cmn-Hans", "cmn"],
"es-419": ["es-419", "es"],
"es-419-u-nu-latn": ["es-419-u-nu-latn", "es-419", "es", "es-u-nu-latn"],
"cmn-hans-cn-u-ca-t-ca-x-t-u": ["cmn-Hans-CN-t-ca-u-ca-x-t-u", "cmn-Hans-CN-t-ca-x-t-u", "cmn-Hans-CN-t-ca-x-t", "cmn-Hans-CN-t-ca", "cmn-Hans-CN", "cmn-Hans", "cmn"],
"de-gregory-u-ca-gregory": ["de-gregory-u-ca-gregory", "de-gregory", "de-u-ca-gregory", "de"],
"no-nyn": ["nn"],
"i-klingon": ["tlh"],
"sgn-GR": ["gss"],
"ji": ["yi"],
"de-DD": ["de-DE", "de"],
"zh-hak-CN": ["hak-CN", "hak"],
"sgn-ils": ["ils"],
"in": ["id"],
"x-foo": ["x-foo"]
};
Object.keys(canonicalizedTags).forEach(function (tag) {
let locale = Intl.getCanonicalLocales(tag);
let expected = canonicalizedTags[tag];
assert(
expected.includes(locale[0]),
`For ${tag} got ${locale}; expected one of ${expected.join(", ")}`,
);
});

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-gen.template
/*---
description: Computed property names (field definitions after a generator in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-gen.template
/*---
description: Computed property symbol names (field definitions after a generator in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-gen.template
/*---
description: Literal property names (field definitions after a generator in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-gen.template
/*---
description: Static Computed property names (field definitions after a generator in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-gen.template
/*---
description: Static computed property symbol names (field definitions after a generator in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-gen.template
/*---
description: Static literal property names (field definitions after a generator in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-gen.template
/*---
description: String literal names (field definitions after a generator in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-method.template
/*---
description: Computed property names (field definitions after a method in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-method.template
/*---
description: Computed property symbol names (field definitions after a method in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-method.template
/*---
description: Literal property names (field definitions after a method in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-method.template
/*---
description: Static Computed property names (field definitions after a method in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-method.template
/*---
description: Static computed property symbol names (field definitions after a method in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-method.template
/*---
description: Static literal property names (field definitions after a method in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-method.template
/*---
description: String literal names (field definitions after a method in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
/*---
description: Computed property names (field definitions after a static async generator in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields, async-iteration]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
/*---
description: Computed property symbol names (field definitions after a static async generator in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields, async-iteration]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
/*---
description: Literal property names (field definitions after a static async generator in the same line)
esid: prod-FieldDefinition
features: [class-fields, async-iteration]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
/*---
description: Static Computed property names (field definitions after a static async generator in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields, async-iteration]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
/*---
description: Static computed property symbol names (field definitions after a static async generator in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields, async-iteration]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
/*---
description: Static literal property names (field definitions after a static async generator in the same line)
esid: prod-FieldDefinition
features: [class-fields, async-iteration]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
/*---
description: String literal names (field definitions after a static async generator in the same line)
esid: prod-FieldDefinition
features: [class-fields, async-iteration]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
/*---
description: Computed property names (field definitions after a static async method in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields, async-functions]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
/*---
description: Computed property symbol names (field definitions after a static async method in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields, async-functions]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
/*---
description: Literal property names (field definitions after a static async method in the same line)
esid: prod-FieldDefinition
features: [class-fields, async-functions]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
/*---
description: Static Computed property names (field definitions after a static async method in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields, async-functions]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
/*---
description: Static computed property symbol names (field definitions after a static async method in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields, async-functions]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
/*---
description: Static literal property names (field definitions after a static async method in the same line)
esid: prod-FieldDefinition
features: [class-fields, async-functions]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
/*---
description: String literal names (field definitions after a static async method in the same line)
esid: prod-FieldDefinition
features: [class-fields, async-functions]
flags: [generated, async]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
/*---
description: Computed property names (field definitions after a static generator in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
/*---
description: Computed property symbol names (field definitions after a static generator in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
/*---
description: Literal property names (field definitions after a static generator in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
/*---
description: Static Computed property names (field definitions after a static generator in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
/*---
description: Static computed property symbol names (field definitions after a static generator in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
/*---
description: Static literal property names (field definitions after a static generator in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
/*---
description: String literal names (field definitions after a static generator in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
/*---
description: Computed property names (field definitions after a static method in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
/*---
description: Computed property symbol names (field definitions after a static method in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
/*---
description: Literal property names (field definitions after a static method in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
/*---
description: Static Computed property names (field definitions after a static method in the same line)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
/*---
description: Static computed property symbol names (field definitions after a static method in the same line)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
/*---
description: Static literal property names (field definitions after a static method in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
/*---
description: String literal names (field definitions after a static method in the same line)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-definitions.template
/*---
description: Computed property names (multiple fields definitions)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-definitions.template
/*---
description: Computed property symbol names (multiple fields definitions)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-definitions.template
/*---
description: Literal property names (multiple fields definitions)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-definitions.template
/*---
description: Static Computed property names (multiple fields definitions)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-definitions.template
/*---
description: Static computed property symbol names (multiple fields definitions)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-definitions.template
/*---
description: Static literal property names (multiple fields definitions)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-definitions.template
/*---
description: String literal names (multiple fields definitions)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
/*---
description: Computed property names (multiple stacked fields definitions through ASI)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
/*---
description: Computed property symbol names (multiple stacked fields definitions through ASI)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
/*---
description: Literal property names (multiple stacked fields definitions through ASI)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
/*---
description: Static Computed property names (multiple stacked fields definitions through ASI)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
/*---
description: Static computed property symbol names (multiple stacked fields definitions through ASI)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
/*---
description: Static literal property names (multiple stacked fields definitions through ASI)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
/*---
description: String literal names (multiple stacked fields definitions through ASI)
esid: prod-FieldDefinition
features: [class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-new-no-sc-line-method.template
/*---
description: Computed property names (field definitions followed by a method in a new line without a semicolon)
esid: prod-FieldDefinition
features: [computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

View File

@ -3,6 +3,7 @@
// - src/class-fields/default/cls-expr-new-no-sc-line-method.template
/*---
description: Computed property symbol names (field definitions followed by a method in a new line without a semicolon)
esid: prod-FieldDefinition
features: [Symbol, computed-property-names, class-fields]
flags: [generated]
includes: [propertyHelper.js]

Some files were not shown because too many files have changed in this diff Show More