Fix features in private method length tests (#2617)

This commit is contained in:
Adrian Heine né Lang 2020-05-11 20:45:01 +02:00 committed by GitHub
parent eaf7f5d507
commit d5826606a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: Anonymous function in field initilizer have length properly set
desc: Anonymous functions in field initializer have length properly set
info: |
Updated Productions
@ -26,7 +26,7 @@ info: |
a. Let initValue be ? Call(initializer, receiver).
...
template: default
features: [class-static-fields-private, class-static-fields-public]
features: [class-fields-private, class-fields-public]
---*/
//- elements

View File

@ -2,9 +2,9 @@
// - src/class-elements/fields-anonymous-function-length.case
// - src/class-elements/default/cls-expr.template
/*---
description: Anonymous function in field initilizer have length properly set (field definitions in a class expression)
description: Anonymous functions in field initializer have length properly set (field definitions in a class expression)
esid: prod-FieldDefinition
features: [class-static-fields-private, class-static-fields-public, class]
features: [class-fields-private, class-fields-public, class]
flags: [generated]
info: |
Updated Productions

View File

@ -2,9 +2,9 @@
// - src/class-elements/fields-anonymous-function-length.case
// - src/class-elements/default/cls-decl.template
/*---
description: Anonymous function in field initilizer have length properly set (field definitions in a class declaration)
description: Anonymous functions in field initializer have length properly set (field definitions in a class declaration)
esid: prod-FieldDefinition
features: [class-static-fields-private, class-static-fields-public, class]
features: [class-fields-private, class-fields-public, class]
flags: [generated]
info: |
Updated Productions