mirror of
https://github.com/tc39/test262.git
synced 2025-07-19 20:14:56 +02:00
Apply review feedback
This commit is contained in:
parent
94a0eaeb8a
commit
dde90bf178
@ -73,8 +73,12 @@ esid: prod-MethodDefinition
|
||||
* the template provides c.ref() for external reference
|
||||
*/
|
||||
|
||||
function hasOwnProperty(obj, name) {
|
||||
return Object.prototype.hasOwnProperty.call(obj, name);
|
||||
function hasProp(obj, name, expected, msg) {
|
||||
var hasOwnProperty = Object.prototype.hasOwnProperty.call(obj, name);
|
||||
assert.sameValue(hasOwnProperty, expected, msg);
|
||||
|
||||
var hasProperty = Reflect.has(obj, name);
|
||||
assert.sameValue(hasProperty, expected, msg);
|
||||
}
|
||||
|
||||
class C {
|
||||
@ -83,12 +87,9 @@ class C {
|
||||
get ref() { return this.#m; }
|
||||
|
||||
constructor() {
|
||||
assert.sameValue(
|
||||
hasOwnProperty(this, '#m'), false,
|
||||
'private methods are defined in an special internal slot and cannot be found as own properties'
|
||||
);
|
||||
hasProp(this, '#m', false, 'private methods are defined in an special internal slot and cannot be found as own properties');
|
||||
assert.sameValue(typeof this.#m, 'function');
|
||||
assert.sameValue(this.ref(), this.#m, 'returns the same value');
|
||||
assert.sameValue(this.ref, this.#m, 'returns the same value');
|
||||
|
||||
/*{ constructor }*/
|
||||
}
|
||||
@ -97,20 +98,9 @@ class C {
|
||||
var c = new C();
|
||||
var other = new C();
|
||||
|
||||
assert.sameValue(
|
||||
hasOwnProperty(C.prototype, '#m'), false,
|
||||
'method is not defined in the prototype'
|
||||
);
|
||||
|
||||
assert.sameValue(
|
||||
hasOwnProperty(C, '#m'), false,
|
||||
'method is not defined in the contructor'
|
||||
);
|
||||
|
||||
assert.sameValue(
|
||||
hasOwnProperty(c, '#m'), false,
|
||||
'method cannot be seen outside of the class'
|
||||
);
|
||||
hasProp(C.prototype, '#m', false, 'method is not defined in the prototype');
|
||||
hasProp(C, '#m', false, 'method is not defined in the contructor');
|
||||
hasProp(c, '#m', false, 'method cannot be seen outside of the class');
|
||||
|
||||
/***
|
||||
* MethodDefinition : ClassElementName ( UniqueFormalParameters ) { FunctionBody }
|
||||
|
@ -4,6 +4,7 @@
|
||||
/*---
|
||||
path: language/expressions/class/private-methods/
|
||||
name: private method definitions in a class expression
|
||||
features: [class, class-methods-private]
|
||||
info: |
|
||||
ClassElement :
|
||||
MethodDefinition
|
||||
@ -73,8 +74,12 @@ esid: prod-MethodDefinition
|
||||
* 2. the template provides c.ref/other.ref for external reference
|
||||
*/
|
||||
|
||||
function hasOwnProperty(obj, name) {
|
||||
return Object.prototype.hasOwnProperty.call(obj, name);
|
||||
function hasProp(obj, name, expected, msg) {
|
||||
var hasOwnProperty = Object.prototype.hasOwnProperty.call(obj, name);
|
||||
assert.sameValue(hasOwnProperty, expected, msg);
|
||||
|
||||
var hasProperty = Reflect.has(obj, name);
|
||||
assert.sameValue(hasProperty, expected, msg);
|
||||
}
|
||||
|
||||
var C = class {
|
||||
@ -83,12 +88,9 @@ var C = class {
|
||||
get ref() { return this.#m; }
|
||||
|
||||
constructor() {
|
||||
assert.sameValue(
|
||||
hasOwnProperty(this, '#m'), false,
|
||||
'private methods are defined in an special internal slot and cannot be found as own properties'
|
||||
);
|
||||
hasProp(this, '#m', false, 'private methods are defined in an special internal slot and cannot be found as own properties');
|
||||
assert.sameValue(typeof this.#m, 'function');
|
||||
assert.sameValue(this.ref(), this.#m, 'returns the same value');
|
||||
assert.sameValue(this.ref, this.#m, 'returns the same value');
|
||||
|
||||
/*{ constructor }*/
|
||||
}
|
||||
@ -97,20 +99,9 @@ var C = class {
|
||||
var c = new C();
|
||||
var other = new C();
|
||||
|
||||
assert.sameValue(
|
||||
hasOwnProperty(C.prototype, '#m'), false,
|
||||
'method is not defined in the prototype'
|
||||
);
|
||||
|
||||
assert.sameValue(
|
||||
hasOwnProperty(C, '#m'), false,
|
||||
'method is not defined in the contructor'
|
||||
);
|
||||
|
||||
assert.sameValue(
|
||||
hasOwnProperty(c, '#m'), false,
|
||||
'method cannot be seen outside of the class'
|
||||
);
|
||||
hasProp(C.prototype, '#m', false, 'method is not defined in the prototype');
|
||||
hasProp(C, '#m', false, 'method is not defined in the contructor');
|
||||
hasProp(c, '#m', false, 'method cannot be seen outside of the class');
|
||||
|
||||
/***
|
||||
* MethodDefinition : ClassElementName ( UniqueFormalParameters ) { FunctionBody }
|
||||
|
@ -26,6 +26,7 @@ assert.sameValue(this.#m.name, '#m', 'function name inside constructor');
|
||||
//- assertions
|
||||
assert.sameValue(c.ref.name, '#m', 'function name is preserved external reference');
|
||||
ctorPromise.then(() => {
|
||||
// gets the returned async iterator from #m
|
||||
var iter = c.ref();
|
||||
return iter.next().then(({ value, done }) => {
|
||||
assert.sameValue(value, 42, 'return from generator method');
|
||||
|
@ -23,6 +23,7 @@ ctorPromise = this.#m().then(value => {
|
||||
//- assertions
|
||||
assert.sameValue(c.ref.name, '#m', 'function name is preserved external reference');
|
||||
ctorPromise.then(() => {
|
||||
// gets the returned promise from #m
|
||||
return c.ref().then(value => {
|
||||
assert.sameValue(value, 42, 'function return');
|
||||
});
|
||||
|
@ -17,6 +17,7 @@ assert.sameValue(res.done, true, 'iterator is done, inside ctor');
|
||||
assert.sameValue(this.#m.name, '#m', 'function name inside constructor');
|
||||
|
||||
//- assertions
|
||||
// gets the returned iterator from #m
|
||||
var res = c.ref().next();
|
||||
assert.sameValue(res.value, 42, 'return from generator method');
|
||||
assert.sameValue(res.done, true, 'iterator is done');
|
||||
|
@ -14,5 +14,6 @@ assert.sameValue(this.#m(), 42, 'already defined in the ctor');
|
||||
assert.sameValue(this.#m.name, '#m', 'function name inside constructor');
|
||||
|
||||
//- assertions
|
||||
// gets the returned value from #m
|
||||
assert.sameValue(c.ref(), 42, 'function return');
|
||||
assert.sameValue(c.ref.name, '#m', 'function name is preserved external reference');
|
||||
|
Loading…
x
Reference in New Issue
Block a user