summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/elements/public-class-field-initialization-on-super-class-with-setter.js
blob: ead58876388afd5ebb3a2489293942c7650a7751 (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
// Copyright (C) 2019 Caio Lima. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Public class field initialization calls [[DefineOwnProperty]] and don't execute super's getter
esid: sec-define-field
info: |
  DefineField(receiver, fieldRecord)
    ...
    8. If fieldName is a Private Name,
      a. Perform ? PrivateFieldAdd(fieldName, receiver, initValue).
    9. Else,
      a. Assert: IsPropertyKey(fieldName) is true.
      b. Perform ? CreateDataPropertyOrThrow(receiver, fieldName, initValue).
    10. Return.
includes: [propertyHelper.js]
features: [class, class-fields-public]
---*/

class Super {
  set f(v) {
    throw new Test262Error();
  }
}

class Base extends Super {
  f = "Test262";
}

let o = new Base();

verifyProperty(o, "f", {
  value: "Test262",
  enumerable: true,
  writable: true,
  configurable: true,
});

reportCompare(0, 0);