forked from tc39/test262
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for proposal-class-fields#92
- Loading branch information
1 parent
e4b6ecb
commit 1413fc5
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
test/language/expressions/class/constructor-this-tdz-during-initializers.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// 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); |