UglifyJS/lib
Mihai Bazon 397bf56d25 other small optimization:
if (foo) continue;
...body...

==>

if (!foo) { ...body ... }

Only when the parent block is the target loop of the `continue` statement.
2012-09-15 16:10:35 +03:00
..
ast.js figure out label targets 2012-09-15 16:05:17 +03:00
compress.js other small optimization: 2012-09-15 16:10:35 +03:00
output.js adding an imaginary "return undefined" can sometimes help 2012-09-14 16:26:30 +03:00
parse.js more optimizations that v1 does and some cleanups 2012-09-14 15:36:38 +03:00
scope.js figure out label targets 2012-09-15 16:05:17 +03:00
sourcemap.js started support for generating source maps (WIP) 2012-08-29 19:39:19 +03:00
utils.js more AST_If optimizations 2012-09-12 16:10:03 +03:00