Age | Commit message (Expand) | Author |
---|---|---|
2017-12-29 | minor clean-ups (#2686) | Alex Lam S.L |
2017-12-29 | v3.3.3 | Alex Lam S.L |
2017-12-28 | fix `pure_getters` on `AST_Binary` (#2681)...fixes #2678 | Alex Lam S.L |
2017-12-28 | improve assignment variations (#2671) | Alex Lam S.L |
2017-12-28 | fix function inlining within loops (#2675)...fixes #2663 | Alex Lam S.L |
2017-12-27 | fix `dead_code` on `return` assignments (#2668)...fixes #2666 | Alex Lam S.L |
2017-12-27 | retain recursive function names (#2667)...fixes #2665 | Alex Lam S.L |
2017-12-27 | fix bugs on substituted `AST_Defun` (#2661)...fixes #2660 | Alex Lam S.L |
2017-12-26 | replace single-use recursive functions (#2659)...fixes #2628 | Alex Lam S.L |
2017-12-26 | suppress `inline` within substituted `AST_Scope` (#2658)...fixes #2657 | Alex Lam S.L |
2017-12-26 | improve `unused` over duplicate variable names (#2656) | Alex Lam S.L |
2017-12-26 | v3.3.2 | Alex Lam S.L |
2017-12-26 | parse LF & comment correctly (#2653)...fixes #2652 | Alex Lam S.L |
2017-12-25 | v3.3.1 | Alex Lam S.L |
2017-12-25 | add `html-minifier` to benchmarks (#2646) | Alex Lam S.L |
2017-12-25 | fix infinite loop during `inline` (#2645)...fixes #2644 | Alex Lam S.L |
2017-12-24 | v3.3.0 | Alex Lam S.L |
2017-12-24 | fix comments output & improve `/*@__PURE__*/`...- fix whitespace around comments - fix comment parsing around parentheses - consider parentheses when parsing `/*@__PURE__*/` - remove all `/*@__PURE__*/` on output fixes #2638 | Alex Lam S.L |
2017-12-24 | fix corner cases with `collapse_vars`, `inline` & `reduce_vars` (#2637)...fixes #2630 | Alex Lam S.L |
2017-12-24 | fix escape analysis on `AST_PropAccess` (#2636) | Alex Lam S.L |
2017-12-22 | make comments output more robust (#2633)...- improve handling of comments right after `return` - retain comments after `OutputStream` - preserve trailing comments - fix handling of new line before comments - handle comments around parentheses fixes #88 fixes #112 fixes #218 fixes #372 fixes #2629 | Alex Lam S.L |
2017-12-20 | extend `test/ufuzz.js` to `inline` & `reduce_funcs` (#2620)...- forward call `fN()` - allow forward call functions to be single-use - avoid generating `AST_Defun` within blocks | Alex Lam S.L |
2017-12-20 | remove AST hack from `inline` (#2627) | Alex Lam S.L |
2017-12-20 | disable `hoist_funs` by default (#2626) | Alex Lam S.L |
2017-12-20 | avoid `inline` of function with special argument names (#2625) | Alex Lam S.L |
2017-12-19 | fix `inline` after single-use `reduce_vars` (#2623) | Alex Lam S.L |
2017-12-19 | Transform can be simplified when clone is not done. (#2621) | Ondřej Španěl |
2017-12-19 | add test for #2613 (#2618) | Alex Lam S.L |
2017-12-19 | handle global constant collision with local variable after `inline` (#2617)...fixes #2616 | Alex Lam S.L |
2017-12-18 | compress `apply()` & `call()` of `function` (#2613)...- `fn.apply(a, [ ... ])` => `fn.call(a, ...)` - `fn.call(a, ... )` => `a, fn(...)` where `fn` can be `function` literal or symbol reference linked through `reduce_vars` | Alex Lam S.L |
2017-12-18 | drop property assignment to constants (#2612) | Alex Lam S.L |
2017-12-18 | improve transversal efficiency in `collapse_vars` (#2611)...fixes #2603 | Alex Lam S.L |
2017-12-17 | export `parse()` (#2608) | Alex Lam S.L |
2017-12-17 | improve `reset_opt_flags()` (#2610) | Alex Lam S.L |
2017-12-16 | account for `catch` variable when `inline` (#2605)...fixes #2604 | Alex Lam S.L |
2017-12-16 | fix nested `inline` (#2602)...fixes #2601 | Alex Lam S.L |
2017-12-15 | fix escape analysis on `||` and `&&` (#2600)...fixes #2598 | Alex Lam S.L |
2017-12-15 | fix `dead_code` on nested `try` (#2599)...fixes #2597 | Alex Lam S.L |
2017-12-15 | fix `reduce_vars` on `do...while` (#2596) | Alex Lam S.L |
2017-12-15 | handle `inline` of function arguments (#2590)...fixes #2476 | Alex Lam S.L |
2017-12-14 | inline single-use `function` across loop (#2594) | Alex Lam S.L |
2017-12-14 | fix `reduce_vars` on single `AST_Defun` reference across loop (#2593) | Alex Lam S.L |
2017-12-14 | improve `reduce_vars` (#2592)...- account for hoisting nature of `var` | Alex Lam S.L |
2017-12-14 | improve `collapse_vars` (#2591)...- handle single-use assignments other than `AST_VarDef` - scan `AST_Call` for candidates | Alex Lam S.L |
2017-12-14 | improve `dead_code` tests (#2589)...for #2588 | kzc |
2017-12-14 | fix `dead_code` on `return`/`throw` within `try` (#2588) | Alex Lam S.L |
2017-12-14 | drop local assign-only variable in `return` (#2587) | Alex Lam S.L |
2017-12-14 | fold `cascade` functionality into `collapse_vars` (#2586) | Alex Lam S.L |
2017-12-13 | recover lost opportunities from #2574 (#2584) | Alex Lam S.L |
2017-12-13 | improve `collapse_vars` on side-effect-free replacements (#2583) | Alex Lam S.L |