Skip to content

Commit

Permalink
fix corner case in unused (#4993)
Browse files Browse the repository at this point in the history
fixes #4992
  • Loading branch information
alexlamsl committed Jun 3, 2021
1 parent dff7b48 commit 83f7887
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 17 deletions.
19 changes: 6 additions & 13 deletions lib/compress.js
Original file line number Diff line number Diff line change
Expand Up @@ -1029,12 +1029,12 @@ merge(Compressor.prototype, {
if (prop.key instanceof AST_Node) prop.key.walk(tw);
return prop.value;
}).forEach(function(prop) {
if (prop.static && (prop.value instanceof AST_Lambda || !prop.value.contains_this())) {
prop.value.walk(tw);
} else {
if (!prop.static || prop instanceof AST_ClassField && prop.value.contains_this()) {
push(tw);
prop.value.walk(tw);
pop(tw);
} else {
prop.value.walk(tw);
}
});
return true;
Expand Down Expand Up @@ -6185,12 +6185,6 @@ merge(Compressor.prototype, {
}
return true;
}
} else if (node instanceof AST_This && scope instanceof AST_DefClass) {
var def = scope.name.definition();
if (!(def.id in in_use_ids)) {
in_use_ids[def.id] = true;
in_use.push(def);
}
}
return scan_ref_scoped(node, descend, true);
});
Expand Down Expand Up @@ -7703,10 +7697,9 @@ merge(Compressor.prototype, {
for (var i = 0; i < props.length; i++) {
var prop = props[i];
if (prop.key instanceof AST_Node) exprs.push(prop.key);
if (prop instanceof AST_ClassField
&& prop.static
&& prop.value
&& !(prop.value instanceof AST_Lambda)) {
if (prop.static && prop.value
&& prop instanceof AST_ClassField
&& prop.value.has_side_effects(compressor)) {
if (prop.value.contains_this()) return this;
values.push(prop.value);
}
Expand Down
31 changes: 27 additions & 4 deletions test/compress/classes.js
Original file line number Diff line number Diff line change
Expand Up @@ -973,9 +973,9 @@ issue_4681: {
}
expect: {
console.log(function(a) {
class A {
(class {
static p = a = this;
}
});
return typeof a;
}());
}
Expand Down Expand Up @@ -1399,9 +1399,9 @@ issue_4821_1: {
}
expect: {
var a;
class A {
(class {
static p = void (a = this);
}
});
console.log(typeof a);
}
expect_stdout: "function"
Expand Down Expand Up @@ -1725,3 +1725,26 @@ issue_4982_2: {
expect_stdout: "PASS"
node_version: ">=12"
}

issue_4992: {
options = {
reduce_vars: true,
toplevel: true,
unused: true,
}
input: {
class A {
static P = this;
get p() {}
}
console.log(typeof A.P);
}
expect: {
console.log(typeof class {
static P = this;
get p() {}
}.P);
}
expect_stdout: "function"
node_version: ">=12"
}

0 comments on commit 83f7887

Please sign in to comment.