From 45a3970ca35e0c640a761601d0854a4c7c5a5cf0 Mon Sep 17 00:00:00 2001 From: Mihai Bazon Date: Mon, 17 Sep 2012 12:53:52 +0300 Subject: [PATCH] one more test for sequences --- test/compress/sequences.js | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/test/compress/sequences.js b/test/compress/sequences.js index ec0f4c97..06c2b989 100644 --- a/test/compress/sequences.js +++ b/test/compress/sequences.js @@ -58,3 +58,32 @@ make_sequences_3: { } } } + +make_sequences_4: { + options = { + sequences: true + }; + input: { + x = 5; + if (y) z(); + + x = 5; + for (i = 0; i < 5; i++) console.log(i); + + x = 5; + for (; i < 5; i++) console.log(i); + + x = 5; + switch (y) {} + + x = 5; + with (obj) {} + } + expect: { + if (x = 5, y) z(); + for (x = 5, i = 0; i < 5; i++) console.log(i); + for (x = 5; i < 5; i++) console.log(i); + switch (x = 5, y) {} + with (x = 5, obj) {} + } +} -- 2.34.1