aboutsummaryrefslogtreecommitdiff
path: root/test/compress/conditionals.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/compress/conditionals.js')
-rw-r--r--test/compress/conditionals.js27
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();
+ }
+}