blob: cc3ca819a6c0cd452e9080af1b1f0cfc62a00368 [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/class-elements/ctor-called-after-fields-init.case
// - src/class-elements/default/cls-expr.template
/*---
description: The constructor method is called after the fields are initalized (field definitions in a class expression)
esid: prod-FieldDefinition
features: [class-fields-public, class]
flags: [generated]
info: |
[[Construct]] ( argumentsList, newTarget)
8. If kind is "base", then
a. Perform OrdinaryCallBindThis(F, calleeContext, thisArgument).
b. Let result be InitializeInstanceFields(thisArgument, F).
...
...
11. Let result be OrdinaryCallEvaluateBody(F, argumentsList).
...
---*/
var ctor;
var C = class {
constructor() {
ctor = this.foo;
}
foo = 42;
}
var c = new C();
assert.sameValue(ctor, 42);