test262/src/class-elements/private-method-shadowed-on-nested-class.case

36 lines
982 B
Plaintext

// Copyright (C) 2019 Caio Lima (Igalia SL). All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: PrivateName of private method can be shadowed by inner class private method
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
template: default
features: [class-methods-private, class-fields-public]
---*/
//- elements
#m() { throw new Test262Error(); }
B = class {
method() {
return this.#m();
}
#m() { return 'test262'; }
}
//- assertions
let c = new C();
let innerB = new c.B();
assert.sameValue(innerB.method(), 'test262');