aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2017-12-14 01:20:36 +0800
committerGitHub <noreply@github.com>2017-12-14 01:20:36 +0800
commitef618332ea92db57e59f90f166035a0e7cf8a509 (patch)
tree1f6e6b0f2d8fb9ae54324265b9d1e8514e5da06b /README.md
parent7f418978c9d39bd0827108176d817259a6e60f5c (diff)
downloadtracifyjs-ef618332ea92db57e59f90f166035a0e7cf8a509.tar.gz
tracifyjs-ef618332ea92db57e59f90f166035a0e7cf8a509.zip
fold `cascade` functionality into `collapse_vars` (#2586)
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 0 insertions, 3 deletions
diff --git a/README.md b/README.md
index 8a34f6e4..ef496178 100644
--- a/README.md
+++ b/README.md
@@ -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.