Add test cases

This commit is contained in:
Alexey Shvayka 2020-08-10 05:47:13 +03:00
parent e73054f75e
commit 9027a803fe
5 changed files with 230 additions and 0 deletions

View File

@ -0,0 +1,51 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: Accessor Methods can be named "prototype"
info: |
Runtime Semantics: ClassDefinitionEvaluation
ClassTail : ClassHeritage_opt { ClassBody_opt }
[...]
6. Let proto be OrdinaryObjectCreate(protoParent).
[...]
14. Perform MakeConstructor(F, false, proto).
[...]
20. For each ClassElement m in order from methods, do
a. If IsStatic of m is false, then
i. Let status be PropertyDefinitionEvaluation of m with arguments proto and false.
[...]
Runtime Semantics: PropertyDefinitionEvaluation
With parameters object and enumerable.
MethodDefinition : get PropertyName ( ) { FunctionBody }
[...]
9. Let desc be the PropertyDescriptor { [[Get]]: closure, [[Enumerable]]: enumerable, [[Configurable]]: true }.
10. Return ? DefinePropertyOrThrow(object, propKey, desc).
MethodDefinition : set PropertyName ( PropertySetParameterList ) { FunctionBody }
[...]
8. Let desc be the PropertyDescriptor { [[Set]]: closure, [[Enumerable]]: enumerable, [[Configurable]]: true }.
9. Return ? DefinePropertyOrThrow(object, propKey, desc).
template: syntax/valid
includes: [propertyHelper.js]
---*/
//- elements
get prototype() { return 13; }
set prototype(_) {}
//- teardown
assert(C.hasOwnProperty('prototype'));
assert(C.prototype.hasOwnProperty('prototype'));
assert.notSameValue(C.prototype.prototype, C.prototype);
assert.sameValue(C.prototype.prototype, 13);
verifyProperty(C.prototype, 'prototype', {
enumerable: false,
configurable: true,
});

View File

@ -0,0 +1,45 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: Async Generator Methods can be named "prototype"
info: |
Runtime Semantics: ClassDefinitionEvaluation
ClassTail : ClassHeritage_opt { ClassBody_opt }
[...]
6. Let proto be OrdinaryObjectCreate(protoParent).
[...]
14. Perform MakeConstructor(F, false, proto).
[...]
20. For each ClassElement m in order from methods, do
a. If IsStatic of m is false, then
i. Let status be PropertyDefinitionEvaluation of m with arguments proto and false.
[...]
Runtime Semantics: PropertyDefinitionEvaluation
With parameters object and enumerable.
AsyncGeneratorMethod : async * PropertyName ( UniqueFormalParameters ) { AsyncGeneratorBody }
[...]
10. Let desc be PropertyDescriptor { [[Value]]: closure, [[Writable]]: true, [[Enumerable]]: enumerable, [[Configurable]]: true }.
11. Return ? DefinePropertyOrThrow(object, propKey, desc).
template: syntax/valid
features: [async-iteration]
includes: [propertyHelper.js]
---*/
//- elements
async * prototype() {}
//- teardown
assert(C.hasOwnProperty('prototype'));
assert(C.prototype.hasOwnProperty('prototype'));
assert.notSameValue(C.prototype.prototype, C.prototype);
verifyProperty(C.prototype, 'prototype', {
writable: true,
enumerable: false,
configurable: true,
});

View File

@ -0,0 +1,45 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: Async Methods can be named "prototype"
info: |
Runtime Semantics: ClassDefinitionEvaluation
ClassTail : ClassHeritage_opt { ClassBody_opt }
[...]
6. Let proto be OrdinaryObjectCreate(protoParent).
[...]
14. Perform MakeConstructor(F, false, proto).
[...]
20. For each ClassElement m in order from methods, do
a. If IsStatic of m is false, then
i. Let status be PropertyDefinitionEvaluation of m with arguments proto and false.
[...]
Runtime Semantics: PropertyDefinitionEvaluation
With parameters object and enumerable.
AsyncMethod : async PropertyName ( UniqueFormalParameters ) { AsyncFunctionBody }
[...]
8. Let desc be the PropertyDescriptor { [[Value]]: closure, [[Writable]]: true, [[Enumerable]]: enumerable, [[Configurable]]: true }.
9. Return ? DefinePropertyOrThrow(object, propKey, desc).
template: syntax/valid
features: [async-functions]
includes: [propertyHelper.js]
---*/
//- elements
async prototype() {}
//- teardown
assert(C.hasOwnProperty('prototype'));
assert(C.prototype.hasOwnProperty('prototype'));
assert.notSameValue(C.prototype.prototype, C.prototype);
verifyProperty(C.prototype, 'prototype', {
writable: true,
enumerable: false,
configurable: true,
});

View File

@ -0,0 +1,45 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: Generator Methods can be named "prototype"
info: |
Runtime Semantics: ClassDefinitionEvaluation
ClassTail : ClassHeritage_opt { ClassBody_opt }
[...]
6. Let proto be OrdinaryObjectCreate(protoParent).
[...]
14. Perform MakeConstructor(F, false, proto).
[...]
20. For each ClassElement m in order from methods, do
a. If IsStatic of m is false, then
i. Let status be PropertyDefinitionEvaluation of m with arguments proto and false.
[...]
Runtime Semantics: PropertyDefinitionEvaluation
With parameters object and enumerable.
GeneratorMethod : * PropertyName ( UniqueFormalParameters ) { GeneratorBody }
[...]
10. Let desc be the PropertyDescriptor { [[Value]]: closure, [[Writable]]: true, [[Enumerable]]: enumerable, [[Configurable]]: true }.
11. Return ? DefinePropertyOrThrow(object, propKey, desc).
template: syntax/valid
features: [generators]
includes: [propertyHelper.js]
---*/
//- elements
* prototype() {}
//- teardown
assert(C.hasOwnProperty('prototype'));
assert(C.prototype.hasOwnProperty('prototype'));
assert.notSameValue(C.prototype.prototype, C.prototype);
verifyProperty(C.prototype, 'prototype', {
writable: true,
enumerable: false,
configurable: true,
});

View File

@ -0,0 +1,44 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: Methods can be named "prototype"
info: |
Runtime Semantics: ClassDefinitionEvaluation
ClassTail : ClassHeritage_opt { ClassBody_opt }
[...]
6. Let proto be OrdinaryObjectCreate(protoParent).
[...]
14. Perform MakeConstructor(F, false, proto).
[...]
20. For each ClassElement m in order from methods, do
a. If IsStatic of m is false, then
i. Let status be PropertyDefinitionEvaluation of m with arguments proto and false.
[...]
Runtime Semantics: PropertyDefinitionEvaluation
With parameters object and enumerable.
MethodDefinition : PropertyName ( UniqueFormalParameters ) { FunctionBody }
[...]
3. Let desc be the PropertyDescriptor { [[Value]]: methodDef.[[Closure]], [[Writable]]: true, [[Enumerable]]: enumerable, [[Configurable]]: true }.
4. Return ? DefinePropertyOrThrow(object, methodDef.[[Key]], desc).
template: syntax/valid
includes: [propertyHelper.js]
---*/
//- elements
prototype() {}
//- teardown
assert(C.hasOwnProperty('prototype'));
assert(C.prototype.hasOwnProperty('prototype'));
assert.notSameValue(C.prototype.prototype, C.prototype);
verifyProperty(C.prototype, 'prototype', {
writable: true,
enumerable: false,
configurable: true,
});