summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/elements/private-class-field-on-frozen-objects-strict.js
blob: 8c90bfdd312b1e02411efbbd103e1ef5e4885ac7 (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
'use strict';
// Copyright (C) 2019 Caio Lima. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: It is possible to add private fields on frozen objects
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.
features: [class, class-fields-private, class-fields-public]
flags: [onlyStrict]
---*/

class Test {
  f = this;
  #g = (Object.freeze(this), "Test262");

  get g() {
    return this.#g;
  }
}

let t = new Test();
assert.sameValue(t.f, t);
assert.sameValue(t.g, "Test262");

reportCompare(0, 0);