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
But in cases like this, do keep it dedented
It seems like changing this to
Doc.Indentmostly gets us there - InvocationExpression.cs