Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-28 | improve synergy between `collapse_vars` & `unused` (#2521) | Alex Lam S.L | |
2017-11-28 | drop assignment in `AST_VarDef.value` (#2522) | Alex Lam S.L | |
fixes #2516 | |||
2017-11-24 | fix argument/atom collision by `collapse_vars` (#2507) | Alex Lam S.L | |
fixes #2506 | |||
2017-11-24 | eliminate invalid state caching in `collapse_vars` (#2502) | Alex Lam S.L | |
fixes #2497 | |||
2017-11-13 | fix replacement logic in `collapse_vars` (#2475) | Alex Lam S.L | |
2017-11-12 | allow symbol replacement on multiple occurrences (#2472) | Alex Lam S.L | |
- all-or-nothing replacement - avoid unmangleable names fixes #2436 | |||
2017-11-11 | implement 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-11-09 | fix multiple nested function substitutions (#2458) | Alex Lam S.L | |
fixes #2449 | |||
2017-11-06 | consolidate & enhance `unused` (#2439) | Alex Lam S.L | |
- defer declaration removal in `collapse_vars` - account for `AST_SymbolFunarg` in deduplication - private accounting for `collapse_vars` - avoid issues with identity reference due to deep cloning fixes #2437 | |||
2017-11-05 | maintain call argument order in `collapse_vars` (#2426) | Alex Lam S.L | |
fixes #2425 | |||
2017-10-23 | deduplicate declarations regardless of `toplevel` (#2393) | Alex Lam S.L | |
2017-10-22 | safer `properties` transform (#2391) | Alex Lam S.L | |
`{ a: x, b: y }.a` => `[ x, y ][0]` - `x` cannot be function containing `this` `[ x, y, z ][1]` => `(x, z, y)` - only if `z` is side-effect-free | |||
2017-10-19 | enhance `collapse_vars` around lazy operations (#2369) | Alex Lam S.L | |
2017-10-18 | fix `AST_PropAccess` in `collapse_vars` (take 3) (#2375) | Alex Lam S.L | |
Suppress scanning beyond assignment to `a.b` | |||
2017-10-17 | fix `AST_PropAccess` in `collapse_vars` (take 2) (#2372) | Alex Lam S.L | |
fixes #2364 | |||
2017-10-17 | fix `AST_PropAccess` in `collapse_vars` (#2370) | Alex Lam S.L | |
fixes #2364 | |||
2017-10-17 | account for side-effects from `AST_This` in `collapse_vars` (#2365) | Alex Lam S.L | |
2017-10-09 | perform `reduce_vars` on safe literals (#2351) | Alex Lam S.L | |
- constant expression - single reference - same scope - not across loop body | |||
2017-10-08 | collapse `a.b` whenever safe (#2350) | Alex Lam S.L | |
2017-09-20 | suppress `collapse_vars` of `this` into "use strict" (#2326) | Alex Lam S.L | |
fixes #2319 | |||
2017-09-16 | handle LHS side-effects on `cascade` & `collapse_vars` (#2314) | Alex Lam S.L | |
fixes #2313 | |||
2017-09-04 | fix `collapse_vars` on default function argument (#2299) | Alex Lam S.L | |
Avoid collision with local variable `undefined` under certain corner cases. fixes #2298 | |||
2017-07-14 | drop `unused` compound assignments (#2230) | Alex Lam S.L | |
fixes #2226 | |||
2017-07-08 | handle duplicate argument names in `collapse_vars` (#2215) | Alex Lam S.L | |
2017-07-06 | suppress `collapse_vars` of `this` as call argument (#2204) | Alex Lam S.L | |
fixes #2203 | |||
2017-07-02 | drop argument value after `collapse_vars` (#2190) | Alex Lam S.L | |
2017-07-02 | improve `inline` efficiency (#2188) | Alex Lam S.L | |
... by teaching `collapse_vars` some new tricks. fixes #2187 | |||
2017-06-06 | implement 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 | |||
2017-05-12 | remove support for `const` (#1910) | Alex Lam S.L | |
As this is not part of ES5. | |||
2017-05-12 | fix invalid transform on `const` (#1919) | Alex Lam S.L | |
- preserve (re)assignment to `const` for runtime error - suppress `cascade` on `const`, as runtime behaviour is ill-defined | |||
2017-05-06 | enhance `collapse_vars` (#1862) | Alex Lam S.L | |
- extend expression types - `a++` - `a=x;` - extend scan range - `for(init;;);` - `switch(expr){case expr:}` - `a = x; a = a || y;` - terminate upon `debugger;` closes #1821 fixes #27 fixes #315 fixes #1858 | |||
2017-04-20 | improve `unused` (#1832) | Alex Lam S.L | |
- extract leading value with side-effects out of `var` statement - reduce scanning of `AST_Definitions` from 3 passes to just once | |||
2017-04-19 | improve `collapse_vars` on `AST_Var` (#1828) | Alex Lam S.L | |
Perform the same cascaded scanning within `var` statement as we do on array of statements. | |||
2017-04-18 | clean up `collapse_vars` (#1826) | Alex Lam S.L | |
- remove overlap in functionality of singular, consecutive reference of constant value - remove workarounds for previous bugs in `lib/scope.js` - distribute recursive `collapse_single_use_vars()` calls to their respective `OPT(AST_Node)` - enable collapsing of variables within a single `AST_Definitions` | |||
2017-04-18 | support safe reassignments in `reduce_vars` (#1823) | Alex Lam S.L | |
`var a=1;a=2;x(a)` => `x(2)` fix pre-existing issues - reference counting on assignment - walking of anonymous functions - chained assignment | |||
2017-04-06 | improve `pure_getters` (#1786) | Alex Lam S.L | |
- property access to `null` & `undefined` always has side effects - utilise `reduce_vars` to determine safe property access - may-be cases treated as side effects unless `unsafe` | |||
2017-03-26 | fix `delete` related issues in `collapse_vars` and `reduce_vars` (#1689) | Alex Lam S.L | |
2017-03-24 | improve collapsible value detection (#1638) | Alex Lam S.L | |
- #1634 bars variables with cross-scope references in between to collapse - but if assigned value is side-effect-free, no states can be modified, so it is safe to move | |||
2017-03-23 | account for cross-scope modifications in `collapse_vars` (#1634) | Alex Lam S.L | |
mostly done by @kzc fixes #1631 | |||
2017-03-19 | make `expect_stdout` work on Node.js 0.12 (#1623) | Alex Lam S.L | |
That particular version of Node.js has messed up error messages, so provide a version-specific workaround. Also fixed an formatting issue which would cause `expect_stdout` to fail if error message contains excerpts of input. Apply `expect_stdout` to more applicable tests. | |||
2017-03-16 | make `collapse_vars` consistent with `toplevel` (#1608) | Alex Lam S.L | |
fixes #1605 | |||
2017-03-07 | collapse_vars: do not replace a constant in loop condition or init (#1562) | kzc | |
2017-03-03 | collapse_vars should not replace constant in for-in init section (#1538) | kzc | |
fixes #1537 | |||
2017-03-02 | optimize trivial IIFEs returning constants (#1530) | kzc | |
2017-02-21 | drop unused: toplevel, assign-only | alexlamsl | |
- assign statement does not count towards variable usage by default - only works with assignments on the same scope level as declaration - can be disabled with `unused` set to "keep_assign" - `toplevel` to drop unused top-level variables and/or functions - `top_retain` to whitelist top-level exceptions closes #1450 | |||
2016-05-27 | collapse_vars: Do not consider RegExp literals to be constants | kzc | |
Fixes #1100 | |||
2016-01-28 | collapse_vars: fix if/else and ternary operator side effects | kzc | |
2016-01-28 | collapse_vars: fix bug in repeated var defs of same name | kzc | |
2016-01-27 | fix bug in collapse_vars for right side of "||" and "&&" | kzc | |
2016-01-27 | Collapse single use var definitions | kzc | |
Fix #721 |