Skip to content

Commit

Permalink
Moving away from SpaceBrace
Browse files Browse the repository at this point in the history
closes #423
  • Loading branch information
belav committed Oct 11, 2021
1 parent a593419 commit 0ee1698
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,16 @@ public static Doc Print(CSharpSyntaxNode node)

if (constraintClauses != null)
{
docs.Add(ConstraintClauses.Print(constraintClauses));
docs.Add(
// parameterGroupId != null
// // TODO what about this?
// ? ConstraintClauses.PrintWithConditionalSpace(
// constraintClauses,
// parameterGroupId
// )
// :
ConstraintClauses.Print(constraintClauses)
);
}

if (body != null)
Expand Down

0 comments on commit 0ee1698

Please sign in to comment.