mirror of https://github.com/tc39/test262.git
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
// This file was procedurally generated from the following sources:
|
|
// - src/class-elements/private-method-shadowed-on-nested-class.case
|
|
// - src/class-elements/default/cls-expr.template
|
|
/*---
|
|
description: PrivateName of private method can be shadowed by inner class private method (field definitions in a class expression)
|
|
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
|
|
|
|
---*/
|
|
|
|
|
|
var C = class {
|
|
#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');
|