mirror of
https://github.com/tc39/test262.git
synced 2025-10-22 00:03:51 +02:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
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 getter can be shadowed on inner class by a 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
|
|
get #m() { throw new Test262Error(); }
|
|
|
|
B = class {
|
|
method(o) {
|
|
return o.#m();
|
|
}
|
|
|
|
#m() { return 'test262'; }
|
|
}
|
|
//- assertions
|
|
let c = new C();
|
|
let innerB = new c.B();
|
|
assert.sameValue(innerB.method(innerB), 'test262');
|
|
assert.throws(TypeError, function() {
|
|
innerB.method(c);
|
|
}, 'accessed inner class method from an object of outer class');
|