Age | Commit message (Collapse) | 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 | Mihai Bazon | |
ref. mishoo/UglifyJS#441 | |||
2012-11-12 | fix invalid AST produced by dropping unused variable | Mihai Bazon | |
close #44 | |||
2012-11-08 | optimization for if/break as first statement in a loop body | Mihai Bazon | |
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-10-30 | don't move expressions containing the binary `in` operator into the `for` ↵ | Mihai Bazon | |
initializer (opera can't parse it) close #25 | |||
2012-10-24 | fix for `if (...) return; else return ...;` | Mihai Bazon | |
(it was assumed that the first `return` always contains a value) close #22 | |||
2012-10-22 | more sequence optimizations (lift some sequences above binary/unary ↵ | Mihai Bazon | |
expressions so that we can avoid parens) | |||
2012-10-18 | more optimizations for some break/continue cases | Mihai Bazon | |
2012-10-13 | drop unused function arguments | Mihai Bazon | |
also add test for "drop_unused" (the last one fails for now) | |||
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 | Mihai Bazon | |
optimizations of if/return/continue seem to be even better now | |||
2012-09-13 | few more optimizations: | Mihai Bazon | |
- 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 | |||
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 | Mihai Bazon | |
a few more tests and some cleanups. | |||
2012-08-27 | minor | Mihai Bazon | |
2012-08-22 | wrote more of the compressor and added some tests | Mihai Bazon | |