summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/elements/privatefieldset-evaluation-order-1.js
blob: b9d1a0944f84a47e061278a524ebd897cc1f2354 (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
// Copyright (C) 2021 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
  Evaluation order when resolving private fields.
esid: sec-runtime-semantics-keyeddestructuringassignmentevaluation
info: |
  13.15.5.6 Runtime Semantics: KeyedDestructuringAssignmentEvaluation
    1. If DestructuringAssignmentTarget is neither an ObjectLiteral nor an ArrayLiteral, then
      a. Let lref be the result of evaluating DestructuringAssignmentTarget.
      b. ReturnIfAbrupt(lref).
  2. ...

  9.1.1.3.4 GetThisBinding ( )
    1. Assert: envRec.[[ThisBindingStatus]] is not lexical.
    2. If envRec.[[ThisBindingStatus]] is uninitialized, throw a ReferenceError exception.
    3. ...

features: [class, class-fields-private]
---*/

class C extends class {} {
  #field;

  constructor() {
    var init = () => super();

    var object = {
      get a() {
        init();
      }
    };

    // Accessing |this| should throw a ReferenceError before there's an attempt
    // to invoke the getter.
    ({a: this.#field} = object);
  }
}

assert.throws(ReferenceError, function() {
  new C();
});

reportCompare(0, 0);