blob: e7b2308f169a9ebc070f580a2b2293014e07f124 [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/class-elements/private-method-shadowed-on-nested-class.case
// - src/class-elements/default/cls-decl.template
/*---
description: PrivateName of private method can be shadowed by inner class private method (field definitions in a class declaration)
esid: prod-FieldDefinition
features: [class-methods-private, class-fields-public, class]
flags: [generated]
info: |
Updated Productions
CallExpression[Yield, Await]:
CoverCallExpressionAndAsyncArrowHead[?Yield, ?Await]
SuperCall[?Yield, ?Await]
CallExpression[?Yield, ?Await]Arguments[?Yield, ?Await]
CallExpression[?Yield, ?Await][Expression[+In, ?Yield, ?Await]]
CallExpression[?Yield, ?Await].IdentifierName
CallExpression[?Yield, ?Await]TemplateLiteral[?Yield, ?Await]
CallExpression[?Yield, ?Await].PrivateName
---*/
class C {
#m() { throw new Test262Error(); }
B = class {
method() {
return this.#m();
}
#m() { return 'test262'; }
}
}
let c = new C();
let innerB = new c.B();
assert.sameValue(innerB.method(), 'test262');