mirror of
https://github.com/tc39/test262.git
synced 2025-05-31 20:20:30 +02:00
Merge pull request #1293 from bocoup/esid-fix
fix: esid in case file instead of template file
This commit is contained in:
commit
315eca2bbd
@ -2,7 +2,6 @@
|
|||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
esid: prod-FieldDefinition
|
|
||||||
desc: Computed property names
|
desc: Computed property names
|
||||||
info: |
|
info: |
|
||||||
ClassElement:
|
ClassElement:
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
esid: prod-FieldDefinition
|
|
||||||
desc: Computed property symbol names
|
desc: Computed property symbol names
|
||||||
info: |
|
info: |
|
||||||
ClassElement:
|
ClassElement:
|
||||||
|
@ -6,6 +6,7 @@ path: language/statements/class/fields-same-line-async-gen-
|
|||||||
name: field definitions after an async generator in the same line
|
name: field definitions after an async generator in the same line
|
||||||
features: [class-fields, async-iteration]
|
features: [class-fields, async-iteration]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -6,6 +6,7 @@ path: language/statements/class/fields-same-line-async-method-
|
|||||||
name: field definitions after an async method in the same line
|
name: field definitions after an async method in the same line
|
||||||
features: [class-fields, async-functions]
|
features: [class-fields, async-functions]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-after-same-line-gen-
|
path: language/statements/class/fields-after-same-line-gen-
|
||||||
name: field definitions after a generator in the same line
|
name: field definitions after a generator in the same line
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-after-same-line-method-
|
path: language/statements/class/fields-after-same-line-method-
|
||||||
name: field definitions after a method in the same line
|
name: field definitions after a method in the same line
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -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
|
name: field definitions after a static async generator in the same line
|
||||||
features: [class-fields, async-iteration]
|
features: [class-fields, async-iteration]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -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
|
name: field definitions after a static async method in the same line
|
||||||
features: [class-fields, async-functions]
|
features: [class-fields, async-functions]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-after-same-line-static-gen-
|
path: language/statements/class/fields-after-same-line-static-gen-
|
||||||
name: field definitions after a static generator in the same line
|
name: field definitions after a static generator in the same line
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-after-same-line-static-method-
|
path: language/statements/class/fields-after-same-line-static-method-
|
||||||
name: field definitions after a static method in the same line
|
name: field definitions after a static method in the same line
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-multiple-definitions-
|
path: language/statements/class/fields-multiple-definitions-
|
||||||
name: multiple fields definitions
|
name: multiple fields definitions
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-multiple-stacked-definitions-
|
path: language/statements/class/fields-multiple-stacked-definitions-
|
||||||
name: multiple stacked fields definitions through ASI
|
name: multiple stacked fields definitions through ASI
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-new-no-sc-line-method-
|
path: language/statements/class/fields-new-no-sc-line-method-
|
||||||
name: field definitions followed by a method in a new line without a semicolon
|
name: field definitions followed by a method in a new line without a semicolon
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-new-sc-line-gen-
|
path: language/statements/class/fields-new-sc-line-gen-
|
||||||
name: field definitions followed by a method in a new line with a semicolon
|
name: field definitions followed by a method in a new line with a semicolon
|
||||||
features: [class-fields, generators]
|
features: [class-fields, generators]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-new-sc-line-method-
|
path: language/statements/class/fields-new-sc-line-method-
|
||||||
name: field definitions followed by a method in a new line with a semicolon
|
name: field definitions followed by a method in a new line with a semicolon
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-regular-definitions-
|
path: language/statements/class/fields-regular-definitions-
|
||||||
name: regular fields defintion
|
name: regular fields defintion
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-same-line-gen-
|
path: language/statements/class/fields-same-line-gen-
|
||||||
name: field definitions followed by a generator method in the same line
|
name: field definitions followed by a generator method in the same line
|
||||||
features: [class-fields, generators]
|
features: [class-fields, generators]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-same-line-method-
|
path: language/statements/class/fields-same-line-method-
|
||||||
name: field definitions followed by a method in the same line
|
name: field definitions followed by a method in the same line
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/statements/class/fields-wrapped-in-sc-
|
path: language/statements/class/fields-wrapped-in-sc-
|
||||||
name: fields definition wrapped in semicolons
|
name: fields definition wrapped in semicolons
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
|
@ -6,6 +6,7 @@ path: language/expressions/class/fields-same-line-async-gen-
|
|||||||
name: field definitions after an async generator in the same line
|
name: field definitions after an async generator in the same line
|
||||||
features: [class-fields, async-iteration]
|
features: [class-fields, async-iteration]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -6,6 +6,7 @@ path: language/expressions/class/fields-same-line-async-method-
|
|||||||
name: field definitions after an async method in the same line
|
name: field definitions after an async method in the same line
|
||||||
features: [class-fields, async-functions]
|
features: [class-fields, async-functions]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-after-same-line-gen-
|
path: language/expressions/class/fields-after-same-line-gen-
|
||||||
name: field definitions after a generator in the same line
|
name: field definitions after a generator in the same line
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-after-same-line-method-
|
path: language/expressions/class/fields-after-same-line-method-
|
||||||
name: field definitions after a method in the same line
|
name: field definitions after a method in the same line
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -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
|
name: field definitions after a static async generator in the same line
|
||||||
features: [class-fields, async-iteration]
|
features: [class-fields, async-iteration]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -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
|
name: field definitions after a static async method in the same line
|
||||||
features: [class-fields, async-functions]
|
features: [class-fields, async-functions]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-after-same-line-static-gen-
|
path: language/expressions/class/fields-after-same-line-static-gen-
|
||||||
name: field definitions after a static generator in the same line
|
name: field definitions after a static generator in the same line
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-after-same-line-static-method-
|
path: language/expressions/class/fields-after-same-line-static-method-
|
||||||
name: field definitions after a static method in the same line
|
name: field definitions after a static method in the same line
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-multiple-definitions-
|
path: language/expressions/class/fields-multiple-definitions-
|
||||||
name: multiple fields definitions
|
name: multiple fields definitions
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-multiple-stacked-definitions-
|
path: language/expressions/class/fields-multiple-stacked-definitions-
|
||||||
name: multiple stacked fields definitions through ASI
|
name: multiple stacked fields definitions through ASI
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-new-no-sc-line-method-
|
path: language/expressions/class/fields-new-no-sc-line-method-
|
||||||
name: field definitions followed by a method in a new line without a semicolon
|
name: field definitions followed by a method in a new line without a semicolon
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-new-sc-line-gen-
|
path: language/expressions/class/fields-new-sc-line-gen-
|
||||||
name: field definitions followed by a method in a new line with a semicolon
|
name: field definitions followed by a method in a new line with a semicolon
|
||||||
features: [class-fields, generators]
|
features: [class-fields, generators]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-new-sc-line-method-
|
path: language/expressions/class/fields-new-sc-line-method-
|
||||||
name: field definitions followed by a method in a new line with a semicolon
|
name: field definitions followed by a method in a new line with a semicolon
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-regular-definitions-
|
path: language/expressions/class/fields-regular-definitions-
|
||||||
name: regular fields defintion
|
name: regular fields defintion
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-same-line-gen-
|
path: language/expressions/class/fields-same-line-gen-
|
||||||
name: field definitions followed by a generator method in the same line
|
name: field definitions followed by a generator method in the same line
|
||||||
features: [class-fields, generators]
|
features: [class-fields, generators]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-same-line-method-
|
path: language/expressions/class/fields-same-line-method-
|
||||||
name: field definitions followed by a method in the same line
|
name: field definitions followed by a method in the same line
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
path: language/expressions/class/fields-wrapped-in-sc-
|
path: language/expressions/class/fields-wrapped-in-sc-
|
||||||
name: fields definition wrapped in semicolons
|
name: fields definition wrapped in semicolons
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
|
esid: prod-FieldDefinition
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class {
|
var C = class {
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
esid: prod-FieldDefinition
|
|
||||||
desc: Literal property names
|
desc: Literal property names
|
||||||
info: |
|
info: |
|
||||||
ClassElement:
|
ClassElement:
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
esid: prod-FieldDefinition
|
|
||||||
desc: Static Computed property names
|
desc: Static Computed property names
|
||||||
info: |
|
info: |
|
||||||
ClassElement:
|
ClassElement:
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
esid: prod-FieldDefinition
|
|
||||||
desc: Static computed property symbol names
|
desc: Static computed property symbol names
|
||||||
info: |
|
info: |
|
||||||
ClassElement:
|
ClassElement:
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
esid: prod-FieldDefinition
|
|
||||||
desc: Static literal property names
|
desc: Static literal property names
|
||||||
info: |
|
info: |
|
||||||
ClassElement:
|
ClassElement:
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
esid: prod-FieldDefinition
|
|
||||||
desc: String literal names
|
desc: String literal names
|
||||||
info: |
|
info: |
|
||||||
ClassElement:
|
ClassElement:
|
||||||
|
@ -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(", ")}`,
|
|
||||||
);
|
|
||||||
});
|
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-gen.template
|
// - src/class-fields/default/cls-expr-after-same-line-gen.template
|
||||||
/*---
|
/*---
|
||||||
description: Computed property names (field definitions after a generator in the same line)
|
description: Computed property names (field definitions after a generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-gen.template
|
// - 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)
|
description: Computed property symbol names (field definitions after a generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [Symbol, computed-property-names, class-fields]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-gen.template
|
// - src/class-fields/default/cls-expr-after-same-line-gen.template
|
||||||
/*---
|
/*---
|
||||||
description: Literal property names (field definitions after a generator in the same line)
|
description: Literal property names (field definitions after a generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-gen.template
|
// - 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)
|
description: Static Computed property names (field definitions after a generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-gen.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-gen.template
|
// - 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)
|
description: Static literal property names (field definitions after a generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-gen.template
|
// - src/class-fields/default/cls-expr-after-same-line-gen.template
|
||||||
/*---
|
/*---
|
||||||
description: String literal names (field definitions after a generator in the same line)
|
description: String literal names (field definitions after a generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-method.template
|
// - src/class-fields/default/cls-expr-after-same-line-method.template
|
||||||
/*---
|
/*---
|
||||||
description: Computed property names (field definitions after a method in the same line)
|
description: Computed property names (field definitions after a method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-method.template
|
// - 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)
|
description: Computed property symbol names (field definitions after a method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [Symbol, computed-property-names, class-fields]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-method.template
|
// - src/class-fields/default/cls-expr-after-same-line-method.template
|
||||||
/*---
|
/*---
|
||||||
description: Literal property names (field definitions after a method in the same line)
|
description: Literal property names (field definitions after a method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-method.template
|
// - 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)
|
description: Static Computed property names (field definitions after a method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-method.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-method.template
|
// - 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)
|
description: Static literal property names (field definitions after a method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-method.template
|
// - src/class-fields/default/cls-expr-after-same-line-method.template
|
||||||
/*---
|
/*---
|
||||||
description: String literal names (field definitions after a method in the same line)
|
description: String literal names (field definitions after a method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
|
// - 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)
|
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]
|
features: [computed-property-names, class-fields, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
|
// - 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)
|
description: Literal property names (field definitions after a static async generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields, async-iteration]
|
features: [class-fields, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
|
// - 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)
|
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]
|
features: [computed-property-names, class-fields, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
|
// - 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)
|
description: Static literal property names (field definitions after a static async generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields, async-iteration]
|
features: [class-fields, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-gen.template
|
// - 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)
|
description: String literal names (field definitions after a static async generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields, async-iteration]
|
features: [class-fields, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
|
// - 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)
|
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]
|
features: [computed-property-names, class-fields, async-functions]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields, async-functions]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
|
// - 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)
|
description: Literal property names (field definitions after a static async method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields, async-functions]
|
features: [class-fields, async-functions]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
|
// - 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)
|
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]
|
features: [computed-property-names, class-fields, async-functions]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields, async-functions]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
|
// - 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)
|
description: Static literal property names (field definitions after a static async method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields, async-functions]
|
features: [class-fields, async-functions]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-async-method.template
|
// - 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)
|
description: String literal names (field definitions after a static async method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields, async-functions]
|
features: [class-fields, async-functions]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
|
// - 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)
|
description: Computed property names (field definitions after a static generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
|
// - 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)
|
description: Literal property names (field definitions after a static generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
|
// - 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)
|
description: Static Computed property names (field definitions after a static generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
|
// - 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)
|
description: Static literal property names (field definitions after a static generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-gen.template
|
// - 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)
|
description: String literal names (field definitions after a static generator in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
|
// - 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)
|
description: Computed property names (field definitions after a static method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
|
// - 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)
|
description: Literal property names (field definitions after a static method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
|
// - 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)
|
description: Static Computed property names (field definitions after a static method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
|
// - 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)
|
description: Static literal property names (field definitions after a static method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-after-same-line-static-method.template
|
// - 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)
|
description: String literal names (field definitions after a static method in the same line)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Computed property names (multiple fields definitions)
|
description: Computed property names (multiple fields definitions)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Computed property symbol names (multiple fields definitions)
|
description: Computed property symbol names (multiple fields definitions)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [Symbol, computed-property-names, class-fields]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Literal property names (multiple fields definitions)
|
description: Literal property names (multiple fields definitions)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Static Computed property names (multiple fields definitions)
|
description: Static Computed property names (multiple fields definitions)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Static computed property symbol names (multiple fields definitions)
|
description: Static computed property symbol names (multiple fields definitions)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [Symbol, computed-property-names, class-fields]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Static literal property names (multiple fields definitions)
|
description: Static literal property names (multiple fields definitions)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: String literal names (multiple fields definitions)
|
description: String literal names (multiple fields definitions)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Computed property names (multiple stacked fields definitions through ASI)
|
description: Computed property names (multiple stacked fields definitions through ASI)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Computed property symbol names (multiple stacked fields definitions through ASI)
|
description: Computed property symbol names (multiple stacked fields definitions through ASI)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [Symbol, computed-property-names, class-fields]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Literal property names (multiple stacked fields definitions through ASI)
|
description: Literal property names (multiple stacked fields definitions through ASI)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Static Computed property names (multiple stacked fields definitions through ASI)
|
description: Static Computed property names (multiple stacked fields definitions through ASI)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [computed-property-names, class-fields]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Static computed property symbol names (multiple stacked fields definitions through ASI)
|
description: Static computed property symbol names (multiple stacked fields definitions through ASI)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [Symbol, computed-property-names, class-fields]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: Static literal property names (multiple stacked fields definitions through ASI)
|
description: Static literal property names (multiple stacked fields definitions through ASI)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
// - src/class-fields/default/cls-expr-multiple-stacked-definitions.template
|
||||||
/*---
|
/*---
|
||||||
description: String literal names (multiple stacked fields definitions through ASI)
|
description: String literal names (multiple stacked fields definitions through ASI)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
features: [class-fields]
|
features: [class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-new-no-sc-line-method.template
|
// - 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)
|
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]
|
features: [computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// - src/class-fields/default/cls-expr-new-no-sc-line-method.template
|
// - 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)
|
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]
|
features: [Symbol, computed-property-names, class-fields]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user