mirror of https://github.com/tc39/test262.git
Fix features in private method length tests (#2617)
This commit is contained in:
parent
eaf7f5d507
commit
d5826606a4
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue