blob: 087142eb936460fdecb3be8fab094a64dc19297c [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/class-elements/private-getter-access-on-inner-arrow-function.case
// - src/class-elements/default/cls-decl.template
/*---
description: PrivateName of private getter is visible on inner arrow function of class scope (field definitions in a class declaration)
esid: prod-FieldDefinition
features: [class-methods-private, 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
---*/
class C {
get #m() { return 'Test262'; }
method() {
let arrowFunction = () => {
return this.#m;
}
return arrowFunction();
}
}
let c = new C();
assert.sameValue(c.method(), 'Test262');
let o = {};
assert.throws(TypeError, function() {
c.method.call(o);
}, 'accessed private accessor from an ordinary object');