mirror of https://github.com/tc39/test262.git
Fix feature flag in private-method-referenced-from-static-method (#2621)
This commit is contained in:
parent
d5826606a4
commit
d2f7d4285c
|
@ -18,7 +18,7 @@ info: |
|
|||
1. If O.[[PrivateBrands]] does not contain an entry e such that SameValue(e, P.[[Brand]]) is true,
|
||||
a. Throw a TypeError exception.
|
||||
template: default
|
||||
features: [class-static-methods-private]
|
||||
features: [class-methods-private]
|
||||
---*/
|
||||
|
||||
//- elements
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
/*---
|
||||
description: Private method referenced from a static method (field definitions in a class expression)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-static-methods-private, class]
|
||||
features: [class-methods-private, class]
|
||||
flags: [generated]
|
||||
info: |
|
||||
PrivateFieldGet (P, O)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
/*---
|
||||
description: Private method referenced from a static method (field definitions in a class declaration)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-static-methods-private, class]
|
||||
features: [class-methods-private, class]
|
||||
flags: [generated]
|
||||
info: |
|
||||
PrivateFieldGet (P, O)
|
||||
|
|
Loading…
Reference in New Issue