diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-01-04 09:24:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-04 09:24:28 +0800 |
commit | 1988495d712c4eeabd89068b4da3420e2e5eb50f (patch) | |
tree | 807ef0676bd7d0b6e3c7c973745dfa79b9fcd7fd /test/compress/conditionals.js | |
parent | fdc10086dafa3b1fbbb686f333b0b7b8e3bb70e5 (diff) | |
download | tracifyjs-1988495d712c4eeabd89068b4da3420e2e5eb50f.tar.gz tracifyjs-1988495d712c4eeabd89068b4da3420e2e5eb50f.zip |
fix corner case in `conditionals` (#3669)
fixes #3668
Diffstat (limited to 'test/compress/conditionals.js')
-rw-r--r-- | test/compress/conditionals.js | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/compress/conditionals.js b/test/compress/conditionals.js index 3f3df72d..2049b401 100644 --- a/test/compress/conditionals.js +++ b/test/compress/conditionals.js @@ -1578,3 +1578,34 @@ issue_3576: { } expect_stdout: "PASS" } + +issue_3668: { + options = { + conditionals: true, + if_return: true, + } + input: { + function f() { + try { + var undefined = typeof f; + if (!f) return undefined; + return; + } catch (e) { + return "FAIL"; + } + } + console.log(f()); + } + expect: { + function f() { + try { + var undefined = typeof f; + return f ? void 0 : undefined; + } catch (e) { + return "FAIL"; + } + } + console.log(f()); + } + expect_stdout: "undefined" +} |