mirror of https://github.com/tc39/test262.git
30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
// This file was procedurally generated from the following sources:
|
|
// - src/class-elements/grammar-static-ctor-gen-meth-valid.case
|
|
// - src/class-elements/syntax/valid/cls-decl-elements-valid-syntax.template
|
|
/*---
|
|
description: Static Generator Methods can be named constructor (class declaration)
|
|
esid: prod-ClassElement
|
|
features: [generators, class]
|
|
flags: [generated]
|
|
info: |
|
|
Class Definitions / Static Semantics: Early Errors
|
|
|
|
ClassElement : MethodDefinition
|
|
It is a Syntax Error if PropName of MethodDefinition is not "constructor" and HasDirectSuper of MethodDefinition is true.
|
|
It is a Syntax Error if PropName of MethodDefinition is "constructor" and SpecialMethod of MethodDefinition is true.
|
|
ClassElement : static MethodDefinition
|
|
It is a Syntax Error if HasDirectSuper of MethodDefinition is true.
|
|
It is a Syntax Error if PropName of MethodDefinition is "prototype".
|
|
|
|
---*/
|
|
|
|
|
|
class C {
|
|
static * constructor() {}
|
|
constructor() {} // stacks with a valid constructor
|
|
}
|
|
|
|
assert(C.hasOwnProperty('constructor'));
|
|
assert(C.prototype.hasOwnProperty('constructor'));
|
|
assert.notSameValue(C.prototype.constructor, C.constructor);
|