summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/elements/fields-hash-constructor-is-a-valid-name.js
blob: 0372cfa3170837f3eebd97a64903d6a8037edcc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: "#constructor is a valid property name for a public field"
esid: sec-class-definitions-static-semantics-early-errors
features: [class, class-fields-public]
info: |
    ClassElementName : PrivateName;

    It is a Syntax  Error if StringValue of PrivateName is "#constructor".
includes: [propertyHelper.js]
---*/

class C1 {
  ["#constructor"];
}

var c1 = new C1();

assert.sameValue(Object.prototype.hasOwnProperty.call(C1, '#constructor'), false);
verifyProperty(c1, '#constructor', {
  value: undefined,
  configurable: true,
  enumerable: true,
  writable: true,
});

class C2 {
  ["#constructor"] = 42;
}

var c2 = new C2();

assert.sameValue(Object.prototype.hasOwnProperty.call(C2, '#constructor'), false);
verifyProperty(c2, '#constructor', {
  value: 42,
  configurable: true,
  enumerable: true,
  writable: true,
});

reportCompare(0, 0);