JS/Inlining: introduce removal of unused variables

This commit is contained in:
Alexey Andreev
2016-05-05 10:52:10 +03:00
parent 776c7447b1
commit 551ed28d84
6 changed files with 133 additions and 3 deletions
@@ -0,0 +1,5 @@
function box() {
var a = 2;
return "OK";
}