test262/test/language/expressions/class/fields-computed-variable-na...

34 lines
1011 B
JavaScript
Raw Normal View History

2017-10-31 19:49:00 +01:00
// This file was procedurally generated from the following sources:
// - src/class-fields/static-propname-constructor.case
// - src/class-fields/propname-error-static/cls-expr-static-variable-name.template
2017-10-31 19:49:00 +01:00
/*---
description: static class field forbid PropName 'constructor' (no early error -- PropName of ComputedPropertyName not forbidden value)
esid: sec-class-definitions-static-semantics-early-errors
2017-11-28 18:49:12 +01:00
features: [class, class-fields-public]
2017-10-31 19:49:00 +01:00
flags: [generated]
info: |
Static Semantics: PropName
...
ComputedPropertyName : [ AssignmentExpression ]
Return empty.
// This test file tests the following early error:
Static Semantics: Early Errors
ClassElement : staticFieldDefinition;
It is a Syntax Error if PropName of FieldDefinition is "prototype" or "constructor".
---*/
var constructor = 'foo';
var C = class {
static [constructor];
};
2017-10-31 19:49:00 +01:00
assert.sameValue(C.hasOwnProperty("foo"), true);
2017-10-31 19:49:00 +01:00
var c = new C();
assert.sameValue(c.hasOwnProperty("foo"), false);