fix corner cases in reduce_vars & unused (#3955)
fixes #3953 fixes #3956 fixes #3957
This commit is contained in:
@@ -2715,3 +2715,23 @@ issue_3944: {
|
||||
}
|
||||
expect_stdout: "false"
|
||||
}
|
||||
|
||||
issue_3953: {
|
||||
options = {
|
||||
evaluate: true,
|
||||
reduce_vars: true,
|
||||
}
|
||||
input: {
|
||||
function f(a) {
|
||||
(a += 0 * (a = 0)) && console.log("PASS");
|
||||
}
|
||||
f(1);
|
||||
}
|
||||
expect: {
|
||||
function f(a) {
|
||||
(a += 0 * (a = 0)) && console.log("PASS");
|
||||
}
|
||||
f(1);
|
||||
}
|
||||
expect_stdout: "PASS"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user