@@ -7166,7 +7166,7 @@ merge(Compressor.prototype, {
|
|||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var child, in_loop, scope;
|
var insert, in_loop, scope;
|
||||||
if (replacing && can_inject_symbols()) {
|
if (replacing && can_inject_symbols()) {
|
||||||
fn._squeezed = true;
|
fn._squeezed = true;
|
||||||
if (exp !== fn) fn.parent_scope = exp.scope;
|
if (exp !== fn) fn.parent_scope = exp.scope;
|
||||||
@@ -7336,7 +7336,7 @@ merge(Compressor.prototype, {
|
|||||||
|
|
||||||
function can_inject_symbols() {
|
function can_inject_symbols() {
|
||||||
var defined = Object.create(null);
|
var defined = Object.create(null);
|
||||||
var level = 0;
|
var level = 0, child;
|
||||||
scope = compressor.self();
|
scope = compressor.self();
|
||||||
while (!(scope instanceof AST_Scope)) {
|
while (!(scope instanceof AST_Scope)) {
|
||||||
if (scope.variables) scope.variables.each(function(def) {
|
if (scope.variables) scope.variables.each(function(def) {
|
||||||
@@ -7357,6 +7357,8 @@ merge(Compressor.prototype, {
|
|||||||
if (scope.fixed_value() instanceof AST_Scope) return false;
|
if (scope.fixed_value() instanceof AST_Scope) return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
insert = scope.body.indexOf(child) + 1;
|
||||||
|
if (!insert) return false;
|
||||||
var safe_to_inject = (!(scope instanceof AST_Toplevel) || compressor.toplevel.vars)
|
var safe_to_inject = (!(scope instanceof AST_Toplevel) || compressor.toplevel.vars)
|
||||||
&& (exp !== fn || fn.parent_scope.resolve() === compressor.find_parent(AST_Scope));
|
&& (exp !== fn || fn.parent_scope.resolve() === compressor.find_parent(AST_Scope));
|
||||||
var inline = compressor.option("inline");
|
var inline = compressor.option("inline");
|
||||||
@@ -7459,7 +7461,7 @@ merge(Compressor.prototype, {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
args.unshift(scope.body.indexOf(child) + 1, 0);
|
args.unshift(insert, 0);
|
||||||
if (decls.length) args.push(make_node(AST_Var, fn, {
|
if (decls.length) args.push(make_node(AST_Var, fn, {
|
||||||
definitions: decls
|
definitions: decls
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -5183,3 +5183,34 @@ issue_4261: {
|
|||||||
}
|
}
|
||||||
expect_stdout: true
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
issue_4265: {
|
||||||
|
options = {
|
||||||
|
conditionals: true,
|
||||||
|
dead_code: true,
|
||||||
|
inline: true,
|
||||||
|
sequences: true,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
function f() {
|
||||||
|
console;
|
||||||
|
if ([ function() {
|
||||||
|
return this + console.log(a);
|
||||||
|
a;
|
||||||
|
var a;
|
||||||
|
}() ]);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
f();
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
function f() {
|
||||||
|
return console, function() {
|
||||||
|
return console.log(a);
|
||||||
|
var a;
|
||||||
|
}(), 0;
|
||||||
|
}
|
||||||
|
f();
|
||||||
|
}
|
||||||
|
expect_stdout: "undefined"
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user