diff options
author | Matt Basta <me@mattbasta.com> | 2014-02-06 12:39:13 -0800 |
---|---|---|
committer | Matt Basta <me@mattbasta.com> | 2014-02-06 12:39:13 -0800 |
commit | ac0086a74521ffce97b6e8bde0bee54feb0c5ec9 (patch) | |
tree | 70d1e1f1472b0365cadc1058b66c169e80d8b4cb /test/compress | |
parent | 5344b7dab897fe266db9524a99529d6b64e9386e (diff) | |
download | tracifyjs-ac0086a74521ffce97b6e8bde0bee54feb0c5ec9.tar.gz tracifyjs-ac0086a74521ffce97b6e8bde0bee54feb0c5ec9.zip |
Simplify nested conditionals if possible
Diffstat (limited to 'test/compress')
-rw-r--r-- | test/compress/conditionals.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/compress/conditionals.js b/test/compress/conditionals.js index 9ef30ac1..213b246b 100644 --- a/test/compress/conditionals.js +++ b/test/compress/conditionals.js @@ -205,3 +205,30 @@ cond_4: { some_condition(), do_something(); } } + +cond_5: { + options = { + conditionals: true + }; + input: { + if (some_condition()) { + if (some_other_condition()) { + do_something(); + } else { + alternate(); + } + } else { + alternate(); + } + + if (some_condition()) { + if (some_other_condition()) { + do_something(); + } + } + } + expect: { + some_condition() && some_other_condition() ? do_something() : alternate(); + some_condition() && some_other_condition() && do_something(); + } +} |