v2.2.0
Unreachable code elimination and if-statement folding work better together:
function foo() {
if (true) {
return;
}
doSomething(); // <- this is now properly eliminated
}Unreachable code elimination and if-statement folding work better together:
function foo() {
if (true) {
return;
}
doSomething(); // <- this is now properly eliminated
}