Skip to content

v2.2.0

Choose a tag to compare

@erikdesjardins erikdesjardins released this 24 Aug 03:25
· 16 commits to master since this release

Unreachable code elimination and if-statement folding work better together:

function foo() {
  if (true) {
    return;
  }

  doSomething(); // <- this is now properly eliminated
}