@@ -3601,14 +3601,7 @@ merge(Compressor.prototype, {
|
||||
return true;
|
||||
});
|
||||
def(AST_Binary, function(compressor) {
|
||||
switch (this.operator) {
|
||||
case "&&":
|
||||
return this.left._dot_throw(compressor) || this.right._dot_throw(compressor);
|
||||
case "||":
|
||||
return this.right._dot_throw(compressor);
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
return lazy_op[this.operator] && (this.left._dot_throw(compressor) || this.right._dot_throw(compressor));
|
||||
});
|
||||
def(AST_Class, return_false);
|
||||
def(AST_Conditional, function(compressor) {
|
||||
|
||||
Reference in New Issue
Block a user