Adding case with computed property and simplifying 'own-property.case'

This commit is contained in:
Caio Lima 2019-06-21 11:42:25 -03:00
parent f1ac274f9d
commit bf859771f0
13 changed files with 206 additions and 105 deletions

View File

@ -27,22 +27,15 @@ features: [class-methods-private]
get #m() { return "Test262"; }
checkPrivateGetter() {
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.__lookupGetter__("#m"), undefined);
assert.sameValue(this.#m, "Test262");
return 0;
}
//- assertions
let c = new C();
c.checkPrivateGetter();
assert.sameValue(c.checkPrivateGetter(), 0);

View File

@ -20,7 +20,6 @@ info: |
c. Let getter be P.[[Get]].
d. Return ? Call(getter, O).
template: default
includes: [compareArray.js]
features: [class-methods-private]
---*/
@ -28,22 +27,13 @@ features: [class-methods-private]
#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");
return 0;
}
//- assertions
let c = new C();
c.checkPrivateMethod();
assert.sameValue(c.checkPrivateMethod(), 0);

View File

@ -27,23 +27,16 @@ features: [class-methods-private]
set #m(v) { this._v = v; }
checkPrivateSetter() {
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.__lookupSetter__("#m"), undefined);
this.#m = "Test262";
assert.sameValue(this._v, "Test262");
return 0;
}
//- assertions
let c = new C();
c.checkPrivateSetter();
assert.sameValue(c.checkPrivateSetter(), 0);

View File

@ -30,23 +30,16 @@ var C = class {
get #m() { return "Test262"; }
checkPrivateGetter() {
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.__lookupGetter__("#m"), undefined);
assert.sameValue(this.#m, "Test262");
return 0;
}
}
let c = new C();
c.checkPrivateGetter();
assert.sameValue(c.checkPrivateGetter(), 0);

View File

@ -6,7 +6,6 @@ description: Private method is not stored as an own property of objects (field d
esid: prod-FieldDefinition
features: [class-methods-private, class]
flags: [generated]
includes: [compareArray.js]
info: |
PrivateFieldGet (P, O)
1. Assert: P is a Private Name.
@ -31,23 +30,14 @@ var C = class {
#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");
return 0;
}
}
let c = new C();
c.checkPrivateMethod();
assert.sameValue(c.checkPrivateMethod(), 0);

View File

@ -30,24 +30,17 @@ var C = class {
set #m(v) { this._v = v; }
checkPrivateSetter() {
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.__lookupSetter__("#m"), undefined);
this.#m = "Test262";
assert.sameValue(this._v, "Test262");
return 0;
}
}
let c = new C();
c.checkPrivateSetter();
assert.sameValue(c.checkPrivateSetter(), 0);

View File

@ -0,0 +1,43 @@
// Copyright (C) 2019 Caio Lima (Igalia SL). All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Private field is not clobbered by computed property
esid: sec-privatefieldget
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).
features: [class-fields-public, class-fields-private, class]
---*/
class C {
#m = 44;
["#m"] = this.#m / 11;
checkPrivateField() {
assert.sameValue(this.hasOwnProperty("#m"), true);
assert.sameValue("#m" in this, true);
assert.sameValue(this["#m"], 4);
assert.sameValue(this.#m, 44);
return 0;
}
}
let c = new C();
assert.sameValue(c.checkPrivateField(), 0);

View File

@ -30,23 +30,16 @@ class C {
get #m() { return "Test262"; }
checkPrivateGetter() {
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.__lookupGetter__("#m"), undefined);
assert.sameValue(this.#m, "Test262");
return 0;
}
}
let c = new C();
c.checkPrivateGetter();
assert.sameValue(c.checkPrivateGetter(), 0);

View File

@ -0,0 +1,43 @@
// Copyright (C) 2019 Caio Lima (Igalia SL). All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Private getter is not clobbered by computed property
esid: sec-privatefieldget
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).
features: [class-methods-private, class-fields-public, class]
---*/
class C {
get #m() { return "Test262"; }
["#m"] = 0;
checkPrivateGetter() {
assert.sameValue(this.hasOwnProperty("#m"), true);
assert.sameValue("#m" in this, true);
assert.sameValue(this["#m"], 0);
assert.sameValue(this.#m, "Test262");
return 0;
}
}
let c = new C();
assert.sameValue(c.checkPrivateGetter(), 0);

View File

@ -6,7 +6,6 @@ description: Private method is not stored as an own property of objects (field d
esid: prod-FieldDefinition
features: [class-methods-private, class]
flags: [generated]
includes: [compareArray.js]
info: |
PrivateFieldGet (P, O)
1. Assert: P is a Private Name.
@ -31,23 +30,14 @@ 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");
return 0;
}
}
let c = new C();
c.checkPrivateMethod();
assert.sameValue(c.checkPrivateMethod(), 0);

View File

@ -0,0 +1,43 @@
// Copyright (C) 2019 Caio Lima (Igalia SL). All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Private method is not clobbered by computed property
esid: sec-privatefieldget
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).
features: [class-methods-private, class-fields-public, class]
---*/
class C {
#m() { return "Test262"; }
["#m"] = 0;
checkPrivateMethod() {
assert.sameValue(this.hasOwnProperty("#m"), true);
assert.sameValue("#m" in this, true);
assert.sameValue(this["#m"], 0);
assert.sameValue(this.#m(), "Test262");
return 0;
}
}
let c = new C();
assert.sameValue(c.checkPrivateMethod(), 0);

View File

@ -30,24 +30,17 @@ class C {
set #m(v) { this._v = v; }
checkPrivateSetter() {
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.__lookupSetter__("#m"), undefined);
this.#m = "Test262";
assert.sameValue(this._v, "Test262");
return 0;
}
}
let c = new C();
c.checkPrivateSetter();
assert.sameValue(c.checkPrivateSetter(), 0);

View File

@ -0,0 +1,44 @@
// Copyright (C) 2019 Caio Lima (Igalia SL). All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Private setter is not clobbered by computed property
esid: sec-privatefieldget
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).
features: [class-methods-private, class-fields-public, class]
---*/
class C {
set #m(v) { this._v = v; }
["#m"] = 0;
checkPrivateSetter() {
assert.sameValue(this.hasOwnProperty("#m"), true);
assert.sameValue("#m" in this, true);
assert.sameValue(this["#m"], 0);
this.#m = "Test262";
assert.sameValue(this._v, "Test262");
return 0;
}
}
let c = new C();
assert.sameValue(c.checkPrivateSetter(), 0);