mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
regenerate tests
This commit is contained in:
parent
3ea3651396
commit
d68faa904f
@ -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
|
||||
/*---
|
||||
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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-no-sc-line-method.template
|
||||
/*---
|
||||
description: Literal property names (field definitions followed by a method in a new line without a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-no-sc-line-method.template
|
||||
/*---
|
||||
description: Static 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]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-no-sc-line-method.template
|
||||
/*---
|
||||
description: Static 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]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-no-sc-line-method.template
|
||||
/*---
|
||||
description: Static literal property names (field definitions followed by a method in a new line without a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-no-sc-line-method.template
|
||||
/*---
|
||||
description: String literal names (field definitions followed by a method in a new line without a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-generator.template
|
||||
/*---
|
||||
description: Computed property names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields, generators]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-generator.template
|
||||
/*---
|
||||
description: Computed property symbol names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [Symbol, computed-property-names, class-fields, generators]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-generator.template
|
||||
/*---
|
||||
description: Literal property names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields, generators]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-generator.template
|
||||
/*---
|
||||
description: Static Computed property names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields, generators]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-generator.template
|
||||
/*---
|
||||
description: Static computed property symbol names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [Symbol, computed-property-names, class-fields, generators]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-generator.template
|
||||
/*---
|
||||
description: Static literal property names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields, generators]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-generator.template
|
||||
/*---
|
||||
description: String literal names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields, generators]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-method.template
|
||||
/*---
|
||||
description: Computed property names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-method.template
|
||||
/*---
|
||||
description: Computed property symbol names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [Symbol, computed-property-names, class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-method.template
|
||||
/*---
|
||||
description: Literal property names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-method.template
|
||||
/*---
|
||||
description: Static Computed property names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-method.template
|
||||
/*---
|
||||
description: Static computed property symbol names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [Symbol, computed-property-names, class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-method.template
|
||||
/*---
|
||||
description: Static literal property names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-new-sc-line-method.template
|
||||
/*---
|
||||
description: String literal names (field definitions followed by a method in a new line with a semicolon)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-regular-definitions.template
|
||||
/*---
|
||||
description: Computed property names (regular fields defintion)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-regular-definitions.template
|
||||
/*---
|
||||
description: Computed property symbol names (regular fields defintion)
|
||||
esid: prod-FieldDefinition
|
||||
features: [Symbol, computed-property-names, class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-regular-definitions.template
|
||||
/*---
|
||||
description: Literal property names (regular fields defintion)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-regular-definitions.template
|
||||
/*---
|
||||
description: Static Computed property names (regular fields defintion)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-regular-definitions.template
|
||||
/*---
|
||||
description: Static computed property symbol names (regular fields defintion)
|
||||
esid: prod-FieldDefinition
|
||||
features: [Symbol, computed-property-names, class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-regular-definitions.template
|
||||
/*---
|
||||
description: Static literal property names (regular fields defintion)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-regular-definitions.template
|
||||
/*---
|
||||
description: String literal names (regular fields defintion)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields]
|
||||
flags: [generated]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-gen.template
|
||||
/*---
|
||||
description: Computed property names (field definitions after an async generator in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields, async-iteration]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-gen.template
|
||||
/*---
|
||||
description: Computed property symbol names (field definitions after an async generator in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [Symbol, computed-property-names, class-fields, async-iteration]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-gen.template
|
||||
/*---
|
||||
description: Literal property names (field definitions after an async generator in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields, async-iteration]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-gen.template
|
||||
/*---
|
||||
description: Static Computed property names (field definitions after an async generator in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields, async-iteration]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-gen.template
|
||||
/*---
|
||||
description: Static computed property symbol names (field definitions after an async generator in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [Symbol, computed-property-names, class-fields, async-iteration]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-gen.template
|
||||
/*---
|
||||
description: Static literal property names (field definitions after an async generator in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields, async-iteration]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-gen.template
|
||||
/*---
|
||||
description: String literal names (field definitions after an async generator in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields, async-iteration]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-method.template
|
||||
/*---
|
||||
description: Computed property names (field definitions after an async method in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields, async-functions]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-method.template
|
||||
/*---
|
||||
description: Computed property symbol names (field definitions after an async method in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [Symbol, computed-property-names, class-fields, async-functions]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-method.template
|
||||
/*---
|
||||
description: Literal property names (field definitions after an async method in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields, async-functions]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-method.template
|
||||
/*---
|
||||
description: Static Computed property names (field definitions after an async method in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields, async-functions]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-method.template
|
||||
/*---
|
||||
description: Static computed property symbol names (field definitions after an async method in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [Symbol, computed-property-names, class-fields, async-functions]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-method.template
|
||||
/*---
|
||||
description: Static literal property names (field definitions after an async method in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields, async-functions]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-after-same-line-async-method.template
|
||||
/*---
|
||||
description: String literal names (field definitions after an async method in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields, async-functions]
|
||||
flags: [generated, async]
|
||||
includes: [propertyHelper.js]
|
||||
|
@ -3,6 +3,7 @@
|
||||
// - src/class-fields/default/cls-expr-same-line-generator.template
|
||||
/*---
|
||||
description: Computed property names (field definitions followed by a generator method in the same line)
|
||||
esid: prod-FieldDefinition
|
||||
features: [computed-property-names, class-fields, generators]
|
||||
flags: [generated]
|
||||
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