diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-12-31 06:55:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-31 14:55:05 +0800 |
commit | 0b7d65d33197e2cab4e57009c1bc5f6fd590b702 (patch) | |
tree | bac3e9e84f144bc1bd80ee1c81ae4c10bc595c20 /test/compress/destructured.js | |
parent | 8b954b022bf206048f8380878251bd64795da5f9 (diff) | |
download | tracifyjs-0b7d65d33197e2cab4e57009c1bc5f6fd590b702.tar.gz tracifyjs-0b7d65d33197e2cab4e57009c1bc5f6fd590b702.zip |
fix corner case with `arguments` (#4486)
fixes #4485
Diffstat (limited to 'test/compress/destructured.js')
-rw-r--r-- | test/compress/destructured.js | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/test/compress/destructured.js b/test/compress/destructured.js index ba7dbf3c..c506e8f0 100644 --- a/test/compress/destructured.js +++ b/test/compress/destructured.js @@ -2215,3 +2215,90 @@ issue_4456: { expect_stdout: "PASS" node_version: ">=6" } + +issue_4485_1: { + options = { + pure_getters: "strict", + side_effects: true, + } + input: { + (function([]) { + var arguments; + try { + arguments.length; + } catch (e) { + console.log("PASS"); + } + })([]); + } + expect: { + (function([]) { + var arguments; + try { + arguments.length; + } catch (e) { + console.log("PASS"); + } + })([]); + } + expect_stdout: true + node_version: ">=6" +} + +issue_4485_2: { + options = { + pure_getters: "strict", + side_effects: true, + } + input: { + (function([]) { + var arguments = null; + try { + arguments.length; + } catch (e) { + console.log("PASS"); + } + })([]); + } + expect: { + (function([]) { + var arguments = null; + try { + arguments.length; + } catch (e) { + console.log("PASS"); + } + })([]); + } + expect_stdout: "PASS" + node_version: ">=6" +} + +issue_4485_3: { + options = { + keep_fargs: false, + unused: true, + } + input: { + (function([]) { + var arguments; + try { + arguments.length; + } catch (e) { + console.log("PASS"); + } + })([]); + } + expect: { + (function([]) { + var arguments; + try { + arguments.length; + } catch (e) { + console.log("PASS"); + } + })([]); + } + expect_stdout: true + node_version: ">=6" +} |