UglifyJS/lib
Mihai Bazon 1a5fd3e052 optimization for if/break as first statement in a loop body
for(...; x; ...) if (y) break; → for(...; x&&!y; ...);

similarly for `while` and some combinations (i.e. the `break` appears in the
`else` clause, etc.)
2012-11-08 11:43:14 +02:00
..
ast.js add AST_Accessor and AST_SymbolAccessor node types 2012-11-07 12:43:27 +02:00
compress.js optimization for if/break as first statement in a loop body 2012-11-08 11:43:14 +02:00
mozilla-ast.js fix end tokens in spidermonkey ast import 2012-10-13 11:37:58 +03:00
output.js fix another small regression 2012-11-07 13:31:43 +02:00
parse.js add AST_Accessor and AST_SymbolAccessor node types 2012-11-07 12:43:27 +02:00
scope.js add AST_Accessor and AST_SymbolAccessor node types 2012-11-07 12:43:27 +02:00
sourcemap.js line numbers start at 1 2012-10-02 16:39:53 +03:00
transform.js minor 2012-10-12 14:55:54 +03:00
utils.js add option to mangle names even if eval/with is in use 2012-11-06 18:19:51 +02:00