improve compress efficiency (#5220)

This commit is contained in:
Alex Lam S.L
2021-12-15 00:08:24 +00:00
committed by GitHub
parent 7fe7c39a01
commit 509896a410
7 changed files with 100 additions and 96 deletions

View File

@@ -389,6 +389,7 @@ issue_1288_side_effects: {
options = {
conditionals: true,
negate_iife: true,
sequences: true,
side_effects: true,
}
input: {
@@ -409,10 +410,10 @@ issue_1288_side_effects: {
})(0);
}
expect: {
w;
w,
x || function() {
x = {};
}();
}(),
y;
}
}