diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-12-14 01:20:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-14 01:20:36 +0800 |
commit | ef618332ea92db57e59f90f166035a0e7cf8a509 (patch) | |
tree | 1f6e6b0f2d8fb9ae54324265b9d1e8514e5da06b /README.md | |
parent | 7f418978c9d39bd0827108176d817259a6e60f5c (diff) | |
download | tracifyjs-ef618332ea92db57e59f90f166035a0e7cf8a509.tar.gz tracifyjs-ef618332ea92db57e59f90f166035a0e7cf8a509.zip |
fold `cascade` functionality into `collapse_vars` (#2586)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -601,9 +601,6 @@ If you're using the `X-SourceMap` header instead, you can just omit `sourceMap.u - `booleans` (default: `true`) -- various optimizations for boolean context, for example `!!a ? b : c → a ? b : c` -- `cascade` (default: `true`) -- small optimization for sequences, transform - `x, x` into `x` and `x = something(), x` into `x = something()` - - `collapse_vars` (default: `true`) -- Collapse single-use non-constant variables, side effects permitting. |