blob: 6f5a58a9e03ff80de3e19d378524b8284f62c468 [file] [log] [blame] [edit]
// 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 is available on inner classes
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() { return 'test262'; }
B = class {
method(o) {
return o.#m;
}
}
//- assertions
let c = new C();
let innerB = new c.B();
assert.sameValue(innerB.method(c), 'test262');