fix corner case in collapse_vars (#4217)

fixes #4216
This commit is contained in:
Alex Lam S.L
2020-10-14 00:18:26 +01:00
committed by GitHub
parent b7b8435721
commit 9f8106e1d8
3 changed files with 25 additions and 4 deletions

View File

@@ -1009,3 +1009,26 @@ issue_4212_2: {
}
expect_stdout: true
}
issue_4216: {
options = {
collapse_vars: true,
conditionals: true,
dead_code: true,
evaluate: true,
}
input: {
if (a = 0) {
const a = 0;
}
console.log(typeof a);
}
expect: {
a = 0;
{
const a = void 0;
}
console.log(typeof a);
}
expect_stdout: true
}