diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-12-08 17:41:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 01:41:10 +0800 |
commit | 046bbde9d44a131ec60952e369ec4b22b9718def (patch) | |
tree | 87980753d84fb149ec8ce116671f3ec67ff08cb4 /test/compress | |
parent | fea9da9866478388dcb6f11d4a792d9aea4a23cd (diff) | |
download | tracifyjs-046bbde9d44a131ec60952e369ec4b22b9718def.tar.gz tracifyjs-046bbde9d44a131ec60952e369ec4b22b9718def.zip |
fix corner case in `keep_fargs` & `reduce_vars` (#4354)
fixes #4353
Diffstat (limited to 'test/compress')
-rw-r--r-- | test/compress/keep_fargs.js | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test/compress/keep_fargs.js b/test/compress/keep_fargs.js index 7141a410..8d6c5c99 100644 --- a/test/compress/keep_fargs.js +++ b/test/compress/keep_fargs.js @@ -1452,3 +1452,37 @@ issue_3619: { } expect_stdout: "PASS" } + +issue_4353_1: { + options = { + keep_fargs: "strict", + reduce_vars: true, + unused: true, + } + input: { + console.log(function f(a) {}.length); + } + expect: { + console.log(function(a) {}.length); + } + expect_stdout: "1" +} + +issue_4353_2: { + options = { + keep_fargs: "strict", + reduce_vars: true, + unused: true, + } + input: { + (function f(a) { + while (console.log("PASS")); + })(); + } + expect: { + (function() { + while (console.log("PASS")); + })(); + } + expect_stdout: "PASS" +} |