diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2021-01-18 22:34:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-19 06:34:48 +0800 |
commit | b57bae4b9e528ec7aeea7fd5768295a559cb5e5d (patch) | |
tree | 9226c609aba9ff4a04a6e1b70432a94f93f073a9 /test/compress/ie8.js | |
parent | e23a10f7f96cda932c605988d2d99bb5225d18a5 (diff) | |
download | tracifyjs-b57bae4b9e528ec7aeea7fd5768295a559cb5e5d.tar.gz tracifyjs-b57bae4b9e528ec7aeea7fd5768295a559cb5e5d.zip |
fix corner case in `reduce_vars` (#4569)
fixes #4568
Diffstat (limited to 'test/compress/ie8.js')
-rw-r--r-- | test/compress/ie8.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/compress/ie8.js b/test/compress/ie8.js index c28512ac..ed3950a0 100644 --- a/test/compress/ie8.js +++ b/test/compress/ie8.js @@ -2900,3 +2900,22 @@ issue_4250: { } expect_stdout: "0" } + +issue_4568: { + options = { + ie8: true, + reduce_vars: true, + unused: true, + } + input: { + console.log(typeof f, function(a) { + return a.length; + }([ function f() {} ])); + } + expect: { + console.log(typeof f, function(a) { + return a.length; + }([ function f() {} ])); + } + expect_stdout: "undefined 1" +} |