blob: 931167e92a93a4a0e30ba29e88894983184a9eb8 [file] [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 setter 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
set #m(v) { this._v = v; }
method(v) { this.#m = v; }
B = class {
method(o, v) {
o.#m = v;
}
#m() { return 'test262'; }
}
//- assertions
let c = new C();
let innerB = new c.B();
assert.throws(TypeError, function() {
innerB.method(innerB, 'foo');
}, 'invalid [[Set]] operation in a private method');
c.method('outer class');
assert.sameValue(c._v, 'outer class');
assert.throws(TypeError, function() {
innerB.method(c);
}, 'invalid access of inner class method from an object of outer class');