test262/test/language/statements/class/elements/private-method-is-not-a-own...

54 lines
1.7 KiB
JavaScript
Raw Normal View History

// This file was procedurally generated from the following sources:
// - src/class-elements/private-method-is-not-a-own-property.case
// - src/class-elements/default/cls-decl.template
/*---
description: Private method is not stored as an own property of objects (field definitions in a class declaration)
esid: prod-FieldDefinition
features: [class-methods-private, class]
flags: [generated]
includes: [compareArray.js]
info: |
PrivateFieldGet (P, O)
1. Assert: P is a Private Name.
2. If O is not an object, throw a TypeError exception.
3. If P.[[Kind]] is "field",
a. Let entry be PrivateFieldFind(P, O).
b. If entry is empty, throw a TypeError exception.
c. Return entry.[[PrivateFieldValue]].
4. Perform ? PrivateBrandCheck(O, P).
5. If P.[[Kind]] is "method",
a. Return P.[[Value]].
6. Else,
a. Assert: P.[[Kind]] is "accessor".
b. If P does not have a [[Get]] field, throw a TypeError exception.
c. Let getter be P.[[Get]].
d. Return ? Call(getter, O).
---*/
class C {
#m() { return "Test262"; }
checkPrivateMethod() {
assert.sameValue(Object.getOwnPropertyDescriptor(this, "#m"), undefined);
assert.sameValue(Reflect.getOwnPropertyDescriptor(this, "#m"), undefined);
assert.sameValue(this.hasOwnProperty("#m"), false);
assert.sameValue(Reflect.has(this, "#m"), false);
assert.compareArray(Object.getOwnPropertyNames(this), []);
assert.compareArray(Reflect.ownKeys(this), []);
assert.sameValue("#m" in this, false);
const descriptors = Object.getOwnPropertyDescriptors(this);
assert.sameValue("#m" in descriptors, false);
assert.sameValue(this.#m(), "Test262");
}
}
let c = new C();
c.checkPrivateMethod();