From: Alex Lam S.L Date: Wed, 13 Jan 2021 14:17:24 +0000 (+0000) Subject: fix corner case in `evaluate` (#4553) X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=24917e7084a9ce240660f8d4b69dcbf1515af084;p=UglifyJS.git fix corner case in `evaluate` (#4553) fixes #4552 --- diff --git a/lib/compress.js b/lib/compress.js index 80dd7eab..f0ed6773 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -4244,7 +4244,7 @@ merge(Compressor.prototype, { def(AST_Call, function(compressor, ignore_side_effects, cached, depth) { var exp = this.expression; var fn = exp instanceof AST_SymbolRef ? exp.fixed_value() : exp; - if (fn instanceof AST_Defun || fn instanceof AST_Function) { + if (fn instanceof AST_Arrow || fn instanceof AST_Defun || fn instanceof AST_Function) { if (fn.evaluating) return this; if (fn.name && fn.name.definition().recursive_refs > 0) return this; if (this.is_expr_pure(compressor)) return this; @@ -4264,8 +4264,9 @@ merge(Compressor.prototype, { var stat = fn.first_statement(); if (!(stat instanceof AST_Return)) { if (ignore_side_effects) { + fn.walk(scan_modified); var found = false; - fn.walk(new TreeWalker(function(node) { + walk_body(fn, new TreeWalker(function(node) { if (found) return true; if (node instanceof AST_Return) { if (node.value && node.value._eval(compressor, true, cached, depth) !== undefined) { @@ -8245,7 +8246,7 @@ merge(Compressor.prototype, { if (compressor.option("side_effects") && can_drop && all(fn.body, is_empty) - && (fn === exp ? fn_name_unused(fn, compressor) : !fn.rest && !has_default && !has_destructured) + && (fn === exp ? fn_name_unused(fn, compressor) : !has_default && !has_destructured && !fn.rest) && !(is_arrow(fn) && fn.value)) { return make_sequence(self, convert_args()).optimize(compressor); } @@ -8288,7 +8289,7 @@ merge(Compressor.prototype, { function convert_args(value) { var args = self.args.slice(); - var destructured = fn.rest || has_default > 1 || has_destructured; + var destructured = has_default > 1 || has_destructured || fn.rest; if (destructured || has_spread) args = [ make_node(AST_Array, self, { elements: args }) ]; if (destructured) { var tt = new TreeTransformer(function(node, descend) { diff --git a/test/compress/evaluate.js b/test/compress/evaluate.js index 73c982f2..2b1bbc01 100644 --- a/test/compress/evaluate.js +++ b/test/compress/evaluate.js @@ -3142,3 +3142,36 @@ issue_4480: { } expect_stdout: "PASS" } + +issue_4552: { + options = { + evaluate: true, + keep_fnames: true, + reduce_vars: true, + toplevel: true, + unused: true, + } + input: { + var a = function f(b) { + return function() { + b++; + try { + return b; + } catch (e) {} + }(); + }(); + console.log(a); + } + expect: { + var a = function f(b) { + return function() { + b++; + try { + return b; + } catch (e) {} + }(); + }(); + console.log(a); + } + expect_stdout: "NaN" +}