aboutsummaryrefslogtreecommitdiff
path: root/test/compress/destructured.js
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2020-11-21 00:57:59 +0000
committerGitHub <noreply@github.com>2020-11-21 08:57:59 +0800
commitcf120c7cea2721626caa67767d720431becf7f62 (patch)
treee39a6d8f70385c02726bfdafdc20913a2239c595 /test/compress/destructured.js
parent8d30902ba9e8a08945c8ae7cac0cb2feb27bb93c (diff)
downloadtracifyjs-cf120c7cea2721626caa67767d720431becf7f62.tar.gz
tracifyjs-cf120c7cea2721626caa67767d720431becf7f62.zip
fix corner case in `merge_vars` & `reduce_vars` (#4313)
fixes #4312
Diffstat (limited to 'test/compress/destructured.js')
-rw-r--r--test/compress/destructured.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/compress/destructured.js b/test/compress/destructured.js
index f8e8090d..e654847a 100644
--- a/test/compress/destructured.js
+++ b/test/compress/destructured.js
@@ -1616,3 +1616,34 @@ issue_4308: {
expect_stdout: "PASS"
node_version: ">=6"
}
+
+issue_4312: {
+ options = {
+ collapse_vars: true,
+ inline: true,
+ merge_vars: true,
+ reduce_vars: true,
+ toplevel: true,
+ unused: true,
+ }
+ input: {
+ var a;
+ (function f(b, c) {
+ return function({
+ [a = b]: d,
+ }) {}(c && c);
+ })("PASS", "FAIL");
+ console.log(a);
+ }
+ expect: {
+ var a;
+ b = "PASS",
+ (function({
+ [a = b]: d,
+ }){})((c = "FAIL") && c);
+ var b, c;
+ console.log(a);
+ }
+ expect_stdout: "PASS"
+ node_version: ">=6"
+}