Zeon
Zeon copied to clipboard
A static visual JavaScript analyzer / editor
`for (var i = 0, code; code = codes[i]; ++i) {` should not show this warning
`/\\ufoo/` should not give `invalid unicode escape` error.
``` js var zeon = new Zeon('a = b = c + e ? e : b - c)', Zeon.getNewConfig()); zeon.parse(); zeon.startProcess(); zeon.disambiguate(); zeon.btree.map(function(t) { return t.value; }).join(''); // 'a=((b=(c+e))?e:b-c))'...
Often seems to happen with closing curly brace. Highly annoying. Should really get this fixed :)
Paste this http://code.google.com/p/coderjournal/source/browse/trunk/Posts/2010/01/jquery-1.4.js?edit=1 Minifry zeon.
`var x; var y` -> `var x,y`
When using minify button on `switch(2){case 1:break}` the first time it will add a return after the `break` where it shouldn't. The second time it will add another return after...