Add missing feature to prod-private-method-initialize-order.case (#2354)

This commit is contained in:
Nicolò Ribaudo 2019-09-19 16:48:06 +02:00 committed by Leo Balter
parent 96d6bd0781
commit edafc79523
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ info: |
Value properties are added before initializers so that private methods are visible from all initializers. Value properties are added before initializers so that private methods are visible from all initializers.
template: private-methods template: private-methods
features: [class-methods-private, class-fields-private] features: [class-methods-private, class-fields-private, class-fields-public]
---*/ ---*/
//- element //- element

View File

@ -4,7 +4,7 @@
/*--- /*---
description: Private methods are added before any field initializer is run, even if they appear textually later (private method definitions in a class expression) description: Private methods are added before any field initializer is run, even if they appear textually later (private method definitions in a class expression)
esid: prod-MethodDefinition esid: prod-MethodDefinition
features: [class-methods-private, class-fields-private, class] features: [class-methods-private, class-fields-private, class-fields-public, class]
flags: [generated] flags: [generated]
info: | info: |
ClassElement : ClassElement :

View File

@ -4,7 +4,7 @@
/*--- /*---
description: Private methods are added before any field initializer is run, even if they appear textually later (private method definitions in a class declaration) description: Private methods are added before any field initializer is run, even if they appear textually later (private method definitions in a class declaration)
esid: prod-MethodDefinition esid: prod-MethodDefinition
features: [class-methods-private, class-fields-private, class] features: [class-methods-private, class-fields-private, class-fields-public, class]
flags: [generated] flags: [generated]
info: | info: |
ClassElement : ClassElement :