Merge pull request #948 from kzc/collapse_vars_doc

collapse_vars: document the compress option in README
This commit is contained in:
Richard van Velzen
2016-02-11 22:13:30 +01:00

View File

@@ -325,6 +325,9 @@ to set `true`; it's effectively a shortcut for `foo=true`).
- `cascade` -- small optimization for sequences, transform `x, x` into `x`
and `x = something(), x` into `x = something()`
- `collapse_vars` -- default `false`. Collapse single-use `var` and `const`
definitions when possible.
- `warnings` -- display warnings when dropping unreachable code or unused
declarations etc.