@@ -4376,6 +4376,12 @@ merge(Compressor.prototype, {
|
|||||||
pop();
|
pop();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if (node instanceof AST_LabeledStatement) {
|
||||||
|
push();
|
||||||
|
node.body.walk(tw);
|
||||||
|
pop();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
if (node instanceof AST_Scope) {
|
if (node instanceof AST_Scope) {
|
||||||
if (node instanceof AST_Lambda) {
|
if (node instanceof AST_Lambda) {
|
||||||
references[node.variables.get("arguments").id] = false;
|
references[node.variables.get("arguments").id] = false;
|
||||||
|
|||||||
@@ -486,3 +486,29 @@ issue_4112: {
|
|||||||
}
|
}
|
||||||
expect_stdout: "function"
|
expect_stdout: "function"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
issue_4115: {
|
||||||
|
options = {
|
||||||
|
merge_vars: true,
|
||||||
|
toplevel: true,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
L: {
|
||||||
|
var o = typeof console;
|
||||||
|
for (var k in o)
|
||||||
|
break L;
|
||||||
|
var a = 0;
|
||||||
|
}
|
||||||
|
console.log(typeof a);
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
L: {
|
||||||
|
var o = typeof console;
|
||||||
|
for (var k in o)
|
||||||
|
break L;
|
||||||
|
var a = 0;
|
||||||
|
}
|
||||||
|
console.log(typeof a);
|
||||||
|
}
|
||||||
|
expect_stdout: "undefined"
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user