improve AST_For.init & AST_Switch.expression compression (#2546)
This commit is contained in:
@@ -817,3 +817,23 @@ issue_1758: {
|
||||
}
|
||||
expect_stdout: "0 3"
|
||||
}
|
||||
|
||||
issue_2535: {
|
||||
options = {
|
||||
evaluate: true,
|
||||
dead_code: true,
|
||||
switches: true,
|
||||
}
|
||||
input: {
|
||||
switch(w(), 42) {
|
||||
case 13: x();
|
||||
case 42: y();
|
||||
default: z();
|
||||
}
|
||||
}
|
||||
expect: {
|
||||
w(), 42;
|
||||
y();
|
||||
z();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user