Fix unneeded parens around unary args in new expression.
This commit is contained in:
@@ -533,7 +533,7 @@ function OutputStream(options) {
|
||||
PARENS([ AST_Unary, AST_Undefined ], function(output){
|
||||
var p = output.parent();
|
||||
return p instanceof AST_PropAccess && p.expression === this
|
||||
|| p instanceof AST_New;
|
||||
|| p instanceof AST_Call && p.expression === this;
|
||||
});
|
||||
|
||||
PARENS(AST_Seq, function(output){
|
||||
|
||||
Reference in New Issue
Block a user