csharpier
csharpier copied to clipboard
Don't have dedented method call if there is a long chain
o.Property.CallMethod(
someParameter_____________________________,
someParameter_____________________________
)
.CallMethod()
.CallMethod();
// should be
o.Property.CallMethod(
someParameter_____________________________,
someParameter_____________________________
)
.CallMethod()
.CallMethod();
But in cases like this, do keep it dedented
this.Method(
someParameter__________________________________,
someParameter__________________________________
);
// consistent with
CallMethod(
someParameter__________________________________,
someParameter__________________________________
);
It seems like changing this to Doc.Indent
mostly gets us there - InvocationExpression.cs