aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2021-08-25 03:39:35 +0100
committerGitHub <noreply@github.com>2021-08-25 10:39:35 +0800
commitc3aef2361458941a36d217cb3181ade3b777a37e (patch)
tree3eafad51341480cb600e1c2f081d43f50a750d27
parentdb94d21980583714755322d5dd26bb0850801c03 (diff)
downloadtracifyjs-c3aef2361458941a36d217cb3181ade3b777a37e.tar.gz
tracifyjs-c3aef2361458941a36d217cb3181ade3b777a37e.zip
fix corner case in `reduce_vars` (#5121)
fixes #5120
-rw-r--r--lib/compress.js21
-rw-r--r--test/compress/exponentiation.js4
-rw-r--r--test/compress/functions.js29
3 files changed, 41 insertions, 13 deletions
diff --git a/lib/compress.js b/lib/compress.js
index fa1e1212..91aee404 100644
--- a/lib/compress.js
+++ b/lib/compress.js
@@ -11231,21 +11231,20 @@ merge(Compressor.prototype, {
if (!(node instanceof AST_SymbolRef)) return;
var def = node.definition();
if (def === defun_def) {
- node.thedef = lambda_def;
- lambda_def.references.push(node);
+ node.thedef = def = lambda_def;
} else {
def.single_use = false;
var fn = node.fixed_value();
- if (!is_lambda(fn)) return;
- if (!fn.name) return;
- if (fn.name.definition() !== def) return;
- if (def.scope !== fn.name.scope) return;
- if (fixed.variables.get(fn.name.name) !== def) return;
- fn.name = fn.name.clone();
- var value_def = value.variables.get(fn.name.name) || value[def_fn_name](fn.name);
- node.thedef = value_def;
- value_def.references.push(node);
+ if (is_lambda(fn)
+ && fn.name
+ && fn.name.definition() === def
+ && def.scope === fn.name.scope
+ && fixed.variables.get(fn.name.name) === def) {
+ fn.name = fn.name.clone();
+ node.thedef = def = value.variables.get(fn.name.name) || value[def_fn_name](fn.name);
+ }
}
+ def.references.push(node);
}));
} else {
if (fixed instanceof AST_Scope) {
diff --git a/test/compress/exponentiation.js b/test/compress/exponentiation.js
index e945e13e..084e005b 100644
--- a/test/compress/exponentiation.js
+++ b/test/compress/exponentiation.js
@@ -99,8 +99,8 @@ issue_4664: {
expect: {
(function f() {
new function(a) {
- console.log(typeof f, 1073741824, typeof this);
- }(A = 0);
+ console.log(typeof f, a, typeof this);
+ }((A = 0, 2 ** 30));
})();
}
expect_stdout: "function 1073741824 object"
diff --git a/test/compress/functions.js b/test/compress/functions.js
index 05d175c1..6f596662 100644
--- a/test/compress/functions.js
+++ b/test/compress/functions.js
@@ -6600,3 +6600,32 @@ shorter_without_void: {
"baz",
]
}
+
+issue_5120: {
+ options = {
+ functions: true,
+ reduce_vars: true,
+ toplevel: true,
+ unused: true,
+ }
+ input: {
+ var a = function f() {
+ function g() {
+ f || g();
+ }
+ g();
+ return f.valueOf();
+ };
+ console.log(a() === a ? "PASS" : "FAIL");
+ }
+ expect: {
+ function a() {
+ (function g() {
+ a || g();
+ })();
+ return a.valueOf();
+ }
+ console.log(a() === a ? "PASS" : "FAIL");
+ }
+ expect_stdout: "PASS"
+}