fix corner case in collapse_vars

fixes #3562
This commit is contained in:
alexlamsl 2019-11-01 19:55:53 +08:00
parent 6ad8e1081f
commit 94b7ea9024
2 changed files with 40 additions and 1 deletions

View File

@ -1671,7 +1671,7 @@ merge(Compressor.prototype, {
function symbol_in_lvalues(sym, parent) { function symbol_in_lvalues(sym, parent) {
var lvalue = lvalues[sym.name]; var lvalue = lvalues[sym.name];
if (!lvalue) return; if (!lvalue) return;
if (lvalue !== lhs) return !(parent instanceof AST_Call && parent.expression === sym); if (lvalue !== lhs) return true;
scan_rhs = false; scan_rhs = false;
} }

View File

@ -6348,3 +6348,42 @@ issue_3526_2: {
} }
expect_stdout: "PASS" expect_stdout: "PASS"
} }
issue_3562: {
options = {
collapse_vars: true,
conditionals: true,
sequences: true,
}
input: {
function f(a) {
console.log("PASS", a);
}
function g(b) {
console.log("FAIL", b);
}
var h;
var c;
if (console) {
h = f;
c = "PASS";
} else {
h = g;
c = "FAIL";
}
h(c);
}
expect: {
function f(a) {
console.log("PASS", a);
}
function g(b) {
console.log("FAIL", b);
}
var h;
var c;
c = console ? (h = f, "PASS") : (h = g, "FAIL"),
h(c);
}
expect_stdout: "PASS PASS"
}