现在用JSinJS的缩进工具来做minify发现一个bug。 ``` if () { // statements } else if () { //statements } ``` 以上代码会被压缩成 ``` if(){}elseif(){} ``` 这样引擎就会报错。求fix。