Skip to content

Commit

Permalink
fix corner cases in functions (#3372)
Browse files Browse the repository at this point in the history
fixes #3371
  • Loading branch information
alexlamsl committed Apr 20, 2019
1 parent 855964a commit c719552
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 10 deletions.
34 changes: 24 additions & 10 deletions lib/compress.js
Expand Up @@ -114,7 +114,7 @@ function Compressor(options, false_by_default) {
};
} else if (Array.isArray(pure_funcs)) {
this.pure_funcs = function(node) {
return pure_funcs.indexOf(node.expression.print_to_string()) < 0;
return !member(node.expression.print_to_string(), pure_funcs);
};
} else {
this.pure_funcs = return_true;
Expand All @@ -131,7 +131,7 @@ function Compressor(options, false_by_default) {
top_retain = top_retain.split(/,/);
}
this.top_retain = function(def) {
return top_retain.indexOf(def.name) >= 0;
return member(def.name, top_retain);
};
}
var toplevel = this.options["toplevel"];
Expand Down Expand Up @@ -1711,7 +1711,7 @@ merge(Compressor.prototype, {
CHANGED = true;
statements.splice(i, 1);
} else if (stat instanceof AST_Directive) {
if (seen_dirs.indexOf(stat.value) < 0) {
if (!member(stat.value, seen_dirs)) {
i++;
seen_dirs.push(stat.value);
} else {
Expand Down Expand Up @@ -2853,7 +2853,7 @@ merge(Compressor.prototype, {
var fixed = this.fixed_value();
if (!fixed) return this;
var value;
if (cached.indexOf(fixed) >= 0) {
if (member(fixed, cached)) {
value = fixed._eval();
} else {
this._eval = return_this;
Expand Down Expand Up @@ -3638,11 +3638,16 @@ merge(Compressor.prototype, {
var defun = make_node(AST_Defun, def, def.value);
defun.name = make_node(AST_SymbolDefun, def.name, def.name);
var name_def = def.name.scope.resolve().def_function(defun.name);
if (def.value.name) def.value.name.definition().references.forEach(function(ref) {
ref.name = name_def.name;
ref.thedef = name_def;
ref.reference({});
});
if (def.value.name) {
var old_def = def.value.name.definition();
def.value.walk(new TreeWalker(function(node) {
if (node instanceof AST_SymbolRef && node.definition() === old_def) {
node.name = name_def.name;
node.thedef = name_def;
node.reference({});
}
}));
}
body.push(defun);
} else {
if (side_effects.length > 0) {
Expand Down Expand Up @@ -3703,6 +3708,7 @@ merge(Compressor.prototype, {
// https://github.com/mishoo/UglifyJS2/issues/44
// https://github.com/mishoo/UglifyJS2/issues/1830
// https://github.com/mishoo/UglifyJS2/issues/1838
// https://github.com/mishoo/UglifyJS2/issues/3371
// that's an invalid AST.
// We fix it at this stage by moving the `var` outside the `for`.
if (node instanceof AST_For) {
Expand All @@ -3713,7 +3719,15 @@ merge(Compressor.prototype, {
node.init = block.body.pop();
block.body.push(node);
}
if (node.init instanceof AST_SimpleStatement) {
if (node.init instanceof AST_Defun) {
if (!block) {
block = make_node(AST_BlockStatement, node, {
body: [ node ]
});
}
block.body.splice(-1, 0, node.init);
node.init = null;
} else if (node.init instanceof AST_SimpleStatement) {
node.init = node.init.body;
} else if (is_empty(node.init)) {
node.init = null;
Expand Down
29 changes: 29 additions & 0 deletions test/compress/functions.js
Expand Up @@ -3012,3 +3012,32 @@ issue_3366: {
}
expect_stdout: "PASS"
}

issue_3371: {
options = {
functions: true,
inline: true,
reduce_vars: true,
side_effects: true,
unused: true,
}
input: {
(function() {
var a = function f() {
(function() {
console.log(typeof f);
})();
};
while (a());
})();
}
expect: {
(function() {
function a() {
console.log(typeof a);
}
while (a());
})();
}
expect_stdout: "function"
}
27 changes: 27 additions & 0 deletions test/compress/loops.js
Expand Up @@ -646,3 +646,30 @@ issue_2904: {
}
expect_stdout: "1"
}

issue_3371: {
options = {
functions: true,
join_vars: true,
loops: true,
reduce_vars: true,
unused: true,
}
input: {
(function() {
var a = function() {
console.log("PASS");
};
while (a());
})();
}
expect: {
(function() {
function a() {
console.log("PASS");
}
for (; a(); );
})();
}
expect_stdout: "PASS"
}

0 comments on commit c719552

Please sign in to comment.