mirror of https://github.com/tc39/test262.git
32 lines
859 B
JavaScript
32 lines
859 B
JavaScript
|
// This file was procedurally generated from the following sources:
|
||
|
// - src/class-fields/propname-constructor.case
|
||
|
// - src/class-fields/propname-error/cls-expr-literal-name.template
|
||
|
/*---
|
||
|
description: Static class fields cannot have PropName 'constructor' (literal name)
|
||
|
esid: sec-class-definitions-static-semantics-early-errors
|
||
|
features: [class-fields]
|
||
|
flags: [generated]
|
||
|
negative:
|
||
|
phase: early
|
||
|
type: SyntaxError
|
||
|
info: |
|
||
|
Static Semantics: PropName
|
||
|
LiteralPropertyName : IdentifierName
|
||
|
Return StringValue of IdentifierName.
|
||
|
|
||
|
|
||
|
// This test file tests the following early error:
|
||
|
Static Semantics: Early Errors
|
||
|
|
||
|
ClassElement : FieldDefinition;
|
||
|
It is a Syntax Error if PropName of FieldDefinition is "constructor".
|
||
|
|
||
|
---*/
|
||
|
|
||
|
|
||
|
throw "Test262: This statement should not be evaluated.";
|
||
|
|
||
|
var C = class {
|
||
|
constructor;
|
||
|
}
|