diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-11-11 05:59:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-11 05:59:35 +0800 |
commit | 3c740473686178c242f66d3ad330e1b047335b5f (patch) | |
tree | 0ee897d27731ae245c07deeddb06d183f342b976 /test/compress/switch.js | |
parent | 94525d859f5db559366f96b646aca84438b0f982 (diff) | |
download | tracifyjs-3c740473686178c242f66d3ad330e1b047335b5f.tar.gz tracifyjs-3c740473686178c242f66d3ad330e1b047335b5f.zip |
implement compress option `reduce_funcs` (#2466)
- inline single-use function declarations as expressions when permissible
- depend on `reduce_vars`
- enabled by default
- disable for speed critical code
fixes #2464
Diffstat (limited to 'test/compress/switch.js')
-rw-r--r-- | test/compress/switch.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/compress/switch.js b/test/compress/switch.js index 03c1e00a..7f57a877 100644 --- a/test/compress/switch.js +++ b/test/compress/switch.js @@ -714,6 +714,7 @@ issue_1705_2: { options = { dead_code: true, evaluate: true, + reduce_funcs: true, reduce_vars: true, sequences: true, side_effects: true, |