@@ -13262,8 +13262,7 @@ Compressor.prototype.compress = function(node) {
|
||||
def(AST_New, noop);
|
||||
def(AST_Return, function(compressor, scope, no_return, in_loop) {
|
||||
var value = this.value;
|
||||
if (value) value = value.try_inline(compressor, scope, undefined, in_loop === "try");
|
||||
return value || this;
|
||||
return value && value.try_inline(compressor, scope, undefined, in_loop === "try");
|
||||
});
|
||||
function inline_sequence(compressor, scope, no_return, in_loop, node, skip) {
|
||||
var body = [], exprs = node.expressions, no_ret = no_return;
|
||||
|
||||
Reference in New Issue
Block a user