aboutsummaryrefslogtreecommitdiff
path: root/test/compress/issue-281.js
AgeCommit message (Collapse)Author
2021-03-13implement `annotations` (#4763)Alex Lam S.L
2021-03-03enhance `side_effects` (#4727)Alex Lam S.L
2018-07-01fix corner case in `unused`alexlamsl
2018-06-06general clean-ups (#3175)Alex Lam S.L
2017-12-14fold `cascade` functionality into `collapse_vars` (#2586)Alex Lam S.L
2017-11-11implement compress option `reduce_funcs` (#2466)Alex Lam S.L
- inline single-use function declarations as expressions when permissible - depend on `reduce_vars` - enabled by default - disable for speed critical code fixes #2464
2017-07-02improve `inline` efficiency (#2188)Alex Lam S.L
... by teaching `collapse_vars` some new tricks. fixes #2187
2017-06-13fix variable accounting in `inline` (#2085)Alex Lam S.L
fixes #2084
2017-06-06fix `inline` handling of `AST_Call.args` (#2059)Alex Lam S.L
2017-06-06implement function inlining (#2053)Alex Lam S.L
- empty body - single `AST_Return` - single `AST_SimpleStatement` - avoid `/*#__PURE__*/` Miscellaneous - enhance single-use function substitution fixes #281