@@ -13454,8 +13454,11 @@ Compressor.prototype.compress = function(node) {
|
||||
inlined = inlined.try_inline(compressor, scope, true, in_loop);
|
||||
if (inlined) {
|
||||
this.init = null;
|
||||
inlined.body.push(this);
|
||||
return inlined;
|
||||
if (inlined instanceof AST_BlockStatement) {
|
||||
inlined.body.push(this);
|
||||
return inlined;
|
||||
}
|
||||
return make_node(AST_BlockStatement, inlined, { body: [ inlined, this ] });
|
||||
}
|
||||
}
|
||||
return body && this;
|
||||
|
||||
Reference in New Issue
Block a user