aboutsummaryrefslogtreecommitdiff
path: root/lib/compress.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compress.js')
-rw-r--r--lib/compress.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/compress.js b/lib/compress.js
index 1d6a943b..6436796f 100644
--- a/lib/compress.js
+++ b/lib/compress.js
@@ -811,9 +811,7 @@ merge(Compressor.prototype, {
if (stat instanceof AST_SimpleStatement) {
stat.body = (function transform(thing) {
return thing.transform(new TreeTransformer(function(node){
- if (node instanceof AST_New
- && node.expression instanceof AST_Call
- && node.expression.expression instanceof AST_Function) {
+ if (node instanceof AST_New) {
return node;
}
if (node instanceof AST_Call && node.expression instanceof AST_Function) {