diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-07-28 20:11:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-29 03:11:02 +0800 |
commit | dfe47bcc42d0385577ecffa7fe312025e1369e7b (patch) | |
tree | 8d1e86310aa579611771c0357c3abe5d0d66327a /test/compress | |
parent | 6d3dcaa59e5b7a6e3bef2de1daf4edd66a7bf274 (diff) | |
download | tracifyjs-dfe47bcc42d0385577ecffa7fe312025e1369e7b.tar.gz tracifyjs-dfe47bcc42d0385577ecffa7fe312025e1369e7b.zip |
fix corner case in `ie8` & `reduce_vars` (#4029)
fixes #4028
Diffstat (limited to 'test/compress')
-rw-r--r-- | test/compress/ie8.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/compress/ie8.js b/test/compress/ie8.js index 8ed23102..19437074 100644 --- a/test/compress/ie8.js +++ b/test/compress/ie8.js @@ -2661,3 +2661,33 @@ issue_4019: { } expect_stdout: "0" } + +issue_4028: { + options = { + reduce_vars: true, + toplevel: true, + unused: true, + } + mangle = { + ie8: true, + } + input: { + function a() { + try { + A; + } catch (e) {} + } + var b = a += a; + console.log(typeof b); + } + expect: { + function a() { + try { + A; + } catch (a) {} + } + var b = a += a; + console.log(typeof b); + } + expect_stdout: "string" +} |