Fix class fields when super() is in a default param (#12729)

* Fix class fields when `super()` is in a default param

* Use assertion instead of type cast
This commit is contained in:
Nicolò Ribaudo 2021-02-02 15:38:07 +01:00 committed by GitHub
parent 60ef190d05
commit bab5c62f90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 75 additions and 1 deletions

View File

@ -0,0 +1,6 @@
class Foo extends Bar {
bar = "foo";
constructor(x = test ? super() : 0) {
}
}

View File

@ -0,0 +1,6 @@
{
"plugins": [
["external-helpers", { "helperVersion": "7.100.0" }],
"proposal-class-properties"
]
}

View File

@ -0,0 +1,8 @@
class Foo extends Bar {
constructor(x = test ? (() => {
var _temp;
return _temp = super(), babelHelpers.defineProperty(this, "bar", "foo"), _temp;
})() : 0) {}
}

View File

@ -0,0 +1,6 @@
class Foo extends Bar {
bar = "foo";
constructor(x = () => { check(super()) }) {
}
}

View File

@ -0,0 +1,6 @@
{
"plugins": [
["external-helpers", { "helperVersion": "7.100.0" }],
"proposal-class-properties"
]
}

View File

@ -0,0 +1,8 @@
class Foo extends Bar {
constructor(x = () => {
var _temp;
check((_temp = super(), babelHelpers.defineProperty(this, "bar", "foo"), _temp));
}) {}
}

View File

@ -0,0 +1,6 @@
class Foo extends Bar {
bar = "foo";
constructor(x = super()) {
}
}

View File

@ -0,0 +1,6 @@
{
"plugins": [
["external-helpers", { "helperVersion": "7.100.0" }],
"proposal-class-properties"
]
}

View File

@ -0,0 +1,8 @@
class Foo extends Bar {
constructor(x = (() => {
var _temp;
return _temp = super(), babelHelpers.defineProperty(this, "bar", "foo"), _temp;
})()) {}
}

View File

@ -95,7 +95,10 @@ export function _containerInsertAfter(this: NodePath, nodes) {
* expression, ensure that the completion record is correct by pushing the current node.
*/
export function insertAfter(this: NodePath, nodes_: t.Node | t.Node[]) {
export function insertAfter(
this: NodePath,
nodes_: t.Node | t.Node[],
): NodePath[] {
this._assertUnremoved();
const nodes = this._verifyNodeList(nodes_);
@ -127,6 +130,17 @@ export function insertAfter(this: NodePath, nodes_: t.Node | t.Node[]) {
if (this.node) {
const node = this.node as t.Expression | t.VariableDeclaration;
let { scope } = this;
if (scope.path.isPattern()) {
t.assertExpression(node);
this.replaceWith(
t.callExpression(t.arrowFunctionExpression([], node), []),
);
(this.get("callee.body") as NodePath).insertAfter(nodes);
return [this];
}
// Inserting after the computed key of a method should insert the
// temporary binding in the method's parent's scope.
if (parentPath.isMethod({ computed: true, key: node })) {