aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Expand)Author
2012-10-03AST cleanup (dropped AST_StatementBase)Mihai Bazon
2012-10-03added option for side-effect-free statements, fix testMihai Bazon
2012-10-03disable `hoist_vars` by default and change `comparations` to `comparisons`Mihai Bazon
2012-09-26removed the "squeeze" method (it's now effectively "transform")Mihai Bazon
2012-09-24minor tests fixMihai Bazon
2012-09-17minorMihai Bazon
2012-09-17one more test for sequencesMihai Bazon
2012-09-16rewrite handle_if_return...optimizations of if/return/continue seem to be even better now Mihai Bazon
2012-09-13few more optimizations:...- do multiple passes in tighten_body if it was changed - transform if (foo) return x; return y; ==> return foo?x:y - don't optimize !0 as true (use best_of after evaluation of constant expr) With hoist_vars off we now beat UglifyJS v1 on jQuery-1.8.1 Mihai Bazon
2012-09-12minorMihai Bazon
2012-09-12fixed run-tests and an issue about reversing the condition in AST_IfMihai Bazon
2012-09-10more progress on the compressor (WIP)Mihai Bazon
2012-09-07checkpointMihai Bazon
2012-09-07always keep declarations found in unreachable code...a few more tests and some cleanups. Mihai Bazon
2012-09-07fixed tests (need to drop the toplevel block in "expected" if it's a single s...Mihai Bazon
2012-09-03a LabeledStatement should be in fact a StatementWithBody...This fixes output for: if (foo) { moo: if (bar) { break moo; } } else { baz(); } (the labeled statement must be outputted inside brackets) Mihai Bazon
2012-08-27minorMihai Bazon
2012-08-22wrote more of the compressor and added some testsMihai Bazon