@@ -3054,7 +3054,7 @@ merge(Compressor.prototype, {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function can_merge_flow(ab) {
|
function can_drop_abort(ab) {
|
||||||
if (ab instanceof AST_Return) return in_lambda && is_return_void(ab.value);
|
if (ab instanceof AST_Return) return in_lambda && is_return_void(ab.value);
|
||||||
if (!(ab instanceof AST_LoopControl)) return false;
|
if (!(ab instanceof AST_LoopControl)) return false;
|
||||||
var lct = compressor.loopcontrol_target(ab);
|
var lct = compressor.loopcontrol_target(ab);
|
||||||
@@ -3063,16 +3063,35 @@ merge(Compressor.prototype, {
|
|||||||
return match_target(lct);
|
return match_target(lct);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function can_merge_flow(ab) {
|
||||||
|
if (!can_drop_abort(ab)) return false;
|
||||||
|
for (var j = statements.length; --j > i;) {
|
||||||
|
var stat = statements[j];
|
||||||
|
if (stat instanceof AST_DefClass) {
|
||||||
|
if (stat.name.definition().preinit) return false;
|
||||||
|
} else if (stat instanceof AST_Const || stat instanceof AST_Let) {
|
||||||
|
if (!all(stat.definitions, function(defn) {
|
||||||
|
return !defn.name.match_symbol(function(node) {
|
||||||
|
return node instanceof AST_SymbolDeclaration && node.definition().preinit;
|
||||||
|
});
|
||||||
|
})) return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
function extract_functions() {
|
function extract_functions() {
|
||||||
var defuns = [];
|
var defuns = [];
|
||||||
|
var lexical = false;
|
||||||
var tail = statements.splice(i + 1).filter(function(stat) {
|
var tail = statements.splice(i + 1).filter(function(stat) {
|
||||||
if (stat instanceof AST_LambdaDefinition) {
|
if (stat instanceof AST_LambdaDefinition) {
|
||||||
defuns.push(stat);
|
defuns.push(stat);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (is_lexical_definition(stat)) lexical = true;
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
[].push.apply(all(tail, safe_to_trim) ? statements : tail, defuns);
|
[].push.apply(lexical ? tail : statements, defuns);
|
||||||
return tail;
|
return tail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
12
lib/scope.js
12
lib/scope.js
@@ -273,16 +273,18 @@ AST_Toplevel.DEFMETHOD("figure_out_scope", function(options) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (node instanceof AST_SymbolDeclaration) {
|
if (node instanceof AST_SymbolDeclaration) {
|
||||||
|
var def = node.definition();
|
||||||
|
def.preinit = def.references.length;
|
||||||
if (node instanceof AST_SymbolCatch) {
|
if (node instanceof AST_SymbolCatch) {
|
||||||
// ensure mangling works if `catch` reuses a scope variable
|
// ensure mangling works if `catch` reuses a scope variable
|
||||||
var def = node.definition().redefined();
|
var redef = def.redefined();
|
||||||
if (def) for (var s = node.scope; s; s = s.parent_scope) {
|
if (redef) for (var s = node.scope; s; s = s.parent_scope) {
|
||||||
push_uniq(s.enclosed, def);
|
push_uniq(s.enclosed, redef);
|
||||||
if (s === def.scope) break;
|
if (s === redef.scope) break;
|
||||||
}
|
}
|
||||||
} else if (node instanceof AST_SymbolConst) {
|
} else if (node instanceof AST_SymbolConst) {
|
||||||
// ensure compression works if `const` reuses a scope variable
|
// ensure compression works if `const` reuses a scope variable
|
||||||
var redef = node.definition().redefined();
|
var redef = def.redefined();
|
||||||
if (redef) redef.const_redefs = true;
|
if (redef) redef.const_redefs = true;
|
||||||
}
|
}
|
||||||
if (node.name != "arguments") return true;
|
if (node.name != "arguments") return true;
|
||||||
|
|||||||
@@ -1493,3 +1493,51 @@ mangle_properties: {
|
|||||||
expect_stdout: "PASS 42"
|
expect_stdout: "PASS 42"
|
||||||
node_version: ">=14.6"
|
node_version: ">=14.6"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
issue_4848: {
|
||||||
|
options = {
|
||||||
|
if_return: true,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
"use strict";
|
||||||
|
function f(a) {
|
||||||
|
a(function() {
|
||||||
|
new A();
|
||||||
|
});
|
||||||
|
if (!console)
|
||||||
|
return;
|
||||||
|
class A {
|
||||||
|
constructor() {
|
||||||
|
console.log("PASS");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var g;
|
||||||
|
f(function(h) {
|
||||||
|
g = h;
|
||||||
|
});
|
||||||
|
g();
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
"use strict";
|
||||||
|
function f(a) {
|
||||||
|
a(function() {
|
||||||
|
new A();
|
||||||
|
});
|
||||||
|
if (!console)
|
||||||
|
return;
|
||||||
|
class A {
|
||||||
|
constructor() {
|
||||||
|
console.log("PASS");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var g;
|
||||||
|
f(function(h) {
|
||||||
|
g = h;
|
||||||
|
});
|
||||||
|
g();
|
||||||
|
}
|
||||||
|
expect_stdout: "PASS"
|
||||||
|
node_version: ">=4"
|
||||||
|
}
|
||||||
|
|||||||
@@ -1498,3 +1498,40 @@ issue_4691: {
|
|||||||
}
|
}
|
||||||
expect_stdout: "PASS"
|
expect_stdout: "PASS"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
issue_4848: {
|
||||||
|
options = {
|
||||||
|
if_return: true,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
function f(a) {
|
||||||
|
a(function() {
|
||||||
|
console.log(b);
|
||||||
|
});
|
||||||
|
if (!console)
|
||||||
|
return;
|
||||||
|
const b = "PASS";
|
||||||
|
}
|
||||||
|
var g;
|
||||||
|
f(function(h) {
|
||||||
|
g = h;
|
||||||
|
});
|
||||||
|
g();
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
function f(a) {
|
||||||
|
a(function() {
|
||||||
|
console.log(b);
|
||||||
|
});
|
||||||
|
if (!console)
|
||||||
|
return;
|
||||||
|
const b = "PASS";
|
||||||
|
}
|
||||||
|
var g;
|
||||||
|
f(function(h) {
|
||||||
|
g = h;
|
||||||
|
});
|
||||||
|
g();
|
||||||
|
}
|
||||||
|
expect_stdout: "PASS"
|
||||||
|
}
|
||||||
|
|||||||
@@ -1506,3 +1506,43 @@ issue_4691: {
|
|||||||
expect_stdout: "PASS"
|
expect_stdout: "PASS"
|
||||||
node_version: ">=4"
|
node_version: ">=4"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
issue_4848: {
|
||||||
|
options = {
|
||||||
|
if_return: true,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
"use strict";
|
||||||
|
function f(a) {
|
||||||
|
a(function() {
|
||||||
|
console.log(b);
|
||||||
|
});
|
||||||
|
if (!console)
|
||||||
|
return;
|
||||||
|
let b = "PASS";
|
||||||
|
}
|
||||||
|
var g;
|
||||||
|
f(function(h) {
|
||||||
|
g = h;
|
||||||
|
});
|
||||||
|
g();
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
"use strict";
|
||||||
|
function f(a) {
|
||||||
|
a(function() {
|
||||||
|
console.log(b);
|
||||||
|
});
|
||||||
|
if (!console)
|
||||||
|
return;
|
||||||
|
let b = "PASS";
|
||||||
|
}
|
||||||
|
var g;
|
||||||
|
f(function(h) {
|
||||||
|
g = h;
|
||||||
|
});
|
||||||
|
g();
|
||||||
|
}
|
||||||
|
expect_stdout: "PASS"
|
||||||
|
node_version: ">=4"
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user