aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2017-12-28fix `pure_getters` on `AST_Binary` (#2681)Alex Lam S.L
fixes #2678
2017-12-28fix function inlining within loops (#2675)Alex Lam S.L
fixes #2663
2017-12-27fix `dead_code` on `return` assignments (#2668)Alex Lam S.L
fixes #2666
2017-12-27retain recursive function names (#2667)Alex Lam S.L
fixes #2665
2017-12-27fix bugs on substituted `AST_Defun` (#2661)Alex Lam S.L
fixes #2660
2017-12-26replace single-use recursive functions (#2659)Alex Lam S.L
fixes #2628
2017-12-26suppress `inline` within substituted `AST_Scope` (#2658)Alex Lam S.L
fixes #2657
2017-12-26improve `unused` over duplicate variable names (#2656)Alex Lam S.L
2017-12-26parse LF & comment correctly (#2653)Alex Lam S.L
fixes #2652
2017-12-25add `html-minifier` to benchmarks (#2646)Alex Lam S.L
2017-12-25fix infinite loop during `inline` (#2645)Alex Lam S.L
fixes #2644
2017-12-24fix comments output & improve `/*@__PURE__*/`Alex Lam S.L
- fix whitespace around comments - fix comment parsing around parentheses - consider parentheses when parsing `/*@__PURE__*/` - remove all `/*@__PURE__*/` on output fixes #2638
2017-12-24fix corner cases with `collapse_vars`, `inline` & `reduce_vars` (#2637)Alex Lam S.L
fixes #2630
2017-12-24fix escape analysis on `AST_PropAccess` (#2636)Alex Lam S.L
2017-12-22make comments output more robust (#2633)Alex Lam S.L
- 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
2017-12-20remove AST hack from `inline` (#2627)Alex Lam S.L
2017-12-20disable `hoist_funs` by default (#2626)Alex Lam S.L
2017-12-20avoid `inline` of function with special argument names (#2625)Alex Lam S.L
2017-12-19fix `inline` after single-use `reduce_vars` (#2623)Alex Lam S.L
2017-12-19Transform can be simplified when clone is not done. (#2621)Ondřej Španěl
2017-12-19handle global constant collision with local variable after `inline` (#2617)Alex Lam S.L
fixes #2616
2017-12-18compress `apply()` & `call()` of `function` (#2613)Alex Lam S.L
- `fn.apply(a, [ ... ])` => `fn.call(a, ...)` - `fn.call(a, ... )` => `a, fn(...)` where `fn` can be `function` literal or symbol reference linked through `reduce_vars`
2017-12-18drop property assignment to constants (#2612)Alex Lam S.L
2017-12-18improve transversal efficiency in `collapse_vars` (#2611)Alex Lam S.L
fixes #2603
2017-12-17improve `reset_opt_flags()` (#2610)Alex Lam S.L
2017-12-16account for `catch` variable when `inline` (#2605)Alex Lam S.L
fixes #2604
2017-12-16fix nested `inline` (#2602)Alex Lam S.L
fixes #2601
2017-12-15fix escape analysis on `||` and `&&` (#2600)Alex Lam S.L
fixes #2598
2017-12-15fix `dead_code` on nested `try` (#2599)Alex Lam S.L
fixes #2597
2017-12-15fix `reduce_vars` on `do...while` (#2596)Alex Lam S.L
2017-12-15handle `inline` of function arguments (#2590)Alex Lam S.L
fixes #2476
2017-12-14inline single-use `function` across loop (#2594)Alex Lam S.L
2017-12-14fix `reduce_vars` on single `AST_Defun` reference across loop (#2593)Alex Lam S.L
2017-12-14improve `reduce_vars` (#2592)Alex Lam S.L
- account for hoisting nature of `var`
2017-12-14improve `collapse_vars` (#2591)Alex Lam S.L
- handle single-use assignments other than `AST_VarDef` - scan `AST_Call` for candidates
2017-12-14fix `dead_code` on `return`/`throw` within `try` (#2588)Alex Lam S.L
2017-12-14drop local assign-only variable in `return` (#2587)Alex Lam S.L
2017-12-14fold `cascade` functionality into `collapse_vars` (#2586)Alex Lam S.L
2017-12-13recover lost opportunities from #2574 (#2584)Alex Lam S.L
2017-12-13improve `collapse_vars` on side-effect-free replacements (#2583)Alex Lam S.L
2017-12-13minor clean-up for IIFE (#2582)Alex Lam S.L
- faster exact type match - aggressively convert to `!`
2017-12-12fix `AST_VarDef.may_throw()` (#2580)Alex Lam S.L
2017-12-11fix `collapse_vars` on `switch` (#2578)Alex Lam S.L
2017-12-11remove unused code (#2579)Alex Lam S.L
fixes #2577
2017-12-11escape consecutive unpaired surrogates (#2576)Alex Lam S.L
fixes #2569
2017-12-11handle exceptional flow correctly in `collapse_vars` (#2574)Alex Lam S.L
fixes #2571
2017-12-09improve `unused` on assign-only symbols (#2568)Alex Lam S.L
2017-12-08fix escape analysis for `AST_Throw` (#2564)Alex Lam S.L
2017-12-08fix escape analysis for `AST_Conditional` & `AST_Sequence` (#2563)Alex Lam S.L
fixes #2560
2017-12-08account for side-effects in conditional call inversion (#2562)Alex Lam S.L
fixes #2560