summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/in/private-field-presence-accessor-shadowed.js
blob: 29a33b9b2daee4ff4b9d15ef43ead90addeff5c2 (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
43
44
45
46
47
48
49
// Copyright 2021 the V8 project authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Value when private name describes an accessor method
info: |
  7. Let privateName be ? GetValue(privateNameBinding).
  8. Assert: privateName is a Private Name.
  [...]
  10. Else,
      a. Assert: privateName.[[Kind]] is "method" or "accessor".
      b. If PrivateBrandCheck(rval, privateName) is not an abrupt completion,
         then return true.
  11. Return false.
esid: sec-relational-operators-runtime-semantics-evaluation
features: [class-static-methods-private, class-fields-private-in]
---*/

let Child;
let parentCount = 0;
let childCount = 0;

class Parent {
  get #accessor() {
    parentCount += 1;
  }

  static init() {
    Child = class {
      get #accessor() {
        childCount += 1;
      }

      static isNameIn(value) {
        return #accessor in value;
      }
    };
  }
}

Parent.init();

assert.sameValue(Child.isNameIn(new Parent()), false);
assert.sameValue(parentCount, 0, 'parent accessor not invoked');
assert.sameValue(Child.isNameIn(new Child()), true);
assert.sameValue(childCount, 0, 'child accessor not invoked');


reportCompare(0, 0);