aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/output.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/output.js b/lib/output.js
index 22ee31e4..2a177684 100644
--- a/lib/output.js
+++ b/lib/output.js
@@ -475,8 +475,9 @@ function OutputStream(options) {
PARENS(AST_New, function(output){
var p = output.parent();
- // (new Date).getTime();
- if (p instanceof AST_Dot && no_constructor_parens(this, output))
+ if (no_constructor_parens(this, output)
+ && (p instanceof AST_Dot // (new Date).getTime()
+ || p instanceof AST_Call && p.expression === this)) // (new foo)(bar)
return true;
});