summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/class/constructor-this-tdz-during-initializers.js
blob: 65a4dd0e7ca488692bb0579558afeb5de96c454a (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) 2018 Kevin Gibbons. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-super-keyword-runtime-semantics-evaluation
description: >
    `this` is bound in the constructor of derived classes immediately before running initializers
info: |
    [...]
    6. Let result be ? Construct(func, argList, newTarget).
    [...]
    10. Perform ? thisER.BindThisValue(result).
    11. Perform ? InitializeInstanceFields(result, F).
    [...]
features: [class-fields-public]
---*/


var probeCtorThis;
var thisDuringField;
var thisFromProbe;
var thisDuringCtor;

class Base {
  constructor() {
    assert.throws(ReferenceError, probeCtorThis);
  }
}

var C = class extends Base {
  field = (thisDuringField = this, thisFromProbe = probeCtorThis());
  constructor() {
    probeCtorThis = () => this;
    assert.throws(ReferenceError, probeCtorThis);
    super();
    thisDuringCtor = this;
  }
};

var instance = new C();

assert.sameValue(thisDuringField, instance);
assert.sameValue(thisFromProbe, instance);
assert.sameValue(thisDuringCtor, instance);

reportCompare(0, 0);