diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/compress/default-values.js | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/test/compress/default-values.js b/test/compress/default-values.js index eefa6e0e..0e05d37d 100644 --- a/test/compress/default-values.js +++ b/test/compress/default-values.js @@ -1100,3 +1100,63 @@ issue_4458: { expect_stdout: "PASS 42" node_version: ">=6" } + +issue_4460: { + options = { + collapse_vars: true, + } + input: { + var log = console.log, a = "FAIL"; + var [ b = a ] = (a = "PASS", []); + log(a, b); + } + expect: { + var log = console.log, a = "FAIL"; + var [ b = a ] = (a = "PASS", []); + log(a, b); + } + expect_stdout: "PASS PASS" + node_version: ">=6" +} + +issue_4461_1: { + options = { + collapse_vars: true, + unused: true, + } + input: { + var a = 0; + (function(b = a && console.log("PASS"), c) { + return c; + })(void 0, a++); + } + expect: { + var a = 0; + (function(b = a && console.log("PASS"), c) { + return c; + })(void 0, a++); + } + expect_stdout: "PASS" + node_version: ">=6" +} + +issue_4461_2: { + options = { + collapse_vars: true, + unused: true, + } + input: { + var a = 0; + (function([ b = a && console.log("PASS") ], c) { + return c; + })([], a++); + } + expect: { + var a = 0; + (function([ b = a && console.log("PASS") ], c) { + return c; + })([], a++); + } + expect_stdout: "PASS" + node_version: ">=6" +} |