mirror of https://github.com/tc39/test262.git
Add missing feature to prod-private-method-initialize-order.case (#2354)
This commit is contained in:
parent
96d6bd0781
commit
edafc79523
|
@ -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
|
||||||
|
|
|
@ -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 :
|
||||||
|
|
|
@ -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 :
|
||||||
|
|
Loading…
Reference in New Issue