Update call/member expression chaining heuristic to account for NewExpression's

master
James Long 2017-01-08 14:00:41 -05:00
parent d5ab6ab921
commit fe4484d2e3
1 changed files with 2 additions and 1 deletions

View File

@ -650,7 +650,8 @@ function genericPrintNoParens(path, options, print) {
const isChain = nodes.filter(n => {
return n.call.arguments.length > 0 &&
(n.call.arguments[0].type === "FunctionExpression" ||
n.call.arguments[0].type === "ArrowFunctionExpression");
n.call.arguments[0].type === "ArrowFunctionExpression" ||
n.call.arguments[0].type === "NewExpression");
}).length > 1;
if(hasMultipleLookups) {