Age | Commit message (Expand) | Author |
---|---|---|
2012-11-30 | Add test for issue #59 | Mihai Bazon |
2012-11-14 | better solution for the last test in constant switch folding | Mihai Bazon |
2012-11-14 | optimize constant switch blocks...ref. mishoo/UglifyJS#441 | Mihai Bazon |
2012-11-12 | fix invalid AST produced by dropping unused variable...close #44 | Mihai Bazon |
2012-11-08 | 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.) | Mihai Bazon |
2012-10-30 | don't move expressions containing the binary `in` operator into the `for` ini......(opera can't parse it) close #25 | Mihai Bazon |
2012-10-24 | fix for `if (...) return; else return ...;`...(it was assumed that the first `return` always contains a value) close #22 | Mihai Bazon |
2012-10-22 | more sequence optimizations (lift some sequences above binary/unary expressio... | Mihai Bazon |
2012-10-18 | more optimizations for some break/continue cases | Mihai Bazon |
2012-10-13 | drop unused function arguments...also add test for "drop_unused" (the last one fails for now) | Mihai Bazon |
2012-10-12 | actually enable the option that drops unused names in the test of issue #12 | Mihai Bazon |
2012-10-12 | add test for issue #12 | Mihai Bazon |
2012-10-03 | added option for side-effect-free statements, fix test | Mihai Bazon |
2012-10-03 | disable `hoist_vars` by default and change `comparations` to `comparisons` | Mihai Bazon |
2012-09-24 | minor tests fix | Mihai Bazon |
2012-09-17 | minor | Mihai Bazon |
2012-09-17 | one more test for sequences | Mihai Bazon |
2012-09-16 | rewrite handle_if_return...optimizations of if/return/continue seem to be even better now | Mihai Bazon |
2012-09-13 | few 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-12 | minor | Mihai Bazon |
2012-09-10 | more progress on the compressor (WIP) | Mihai Bazon |
2012-09-07 | always keep declarations found in unreachable code...a few more tests and some cleanups. | Mihai Bazon |
2012-08-27 | minor | Mihai Bazon |
2012-08-22 | wrote more of the compressor and added some tests | Mihai Bazon |