aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2021-07-04 08:09:05 +0100
committerGitHub <noreply@github.com>2021-07-04 15:09:05 +0800
commitf5dbb672b90b0591a824935c4855afc99adc2e59 (patch)
treebce6ae34ffb1e8718b1bb2196884f46eb9bfe5d6 /test
parentf4ae2679202ff9d8edd6a0d7c13cf756e5096a96 (diff)
downloadtracifyjs-f5dbb672b90b0591a824935c4855afc99adc2e59.tar.gz
tracifyjs-f5dbb672b90b0591a824935c4855afc99adc2e59.zip
fix corner case in `reduce_funcs` (#5049)
fixes #5048
Diffstat (limited to 'test')
-rw-r--r--test/compress/reduce_vars.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/compress/reduce_vars.js b/test/compress/reduce_vars.js
index c1531b25..735688ea 100644
--- a/test/compress/reduce_vars.js
+++ b/test/compress/reduce_vars.js
@@ -7677,3 +7677,22 @@ issue_4949: {
}
expect_stdout: "0 1"
}
+
+issue_5048: {
+ options = {
+ reduce_funcs: true,
+ reduce_vars: true,
+ unused: true,
+ }
+ input: {
+ console.log(function() {
+ var a = function() {
+ return a + 42;
+ };
+ }());
+ }
+ expect: {
+ console.log(function() {}());
+ }
+ expect_stdout: "undefined"
+}