Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
CyrusNajmabadi committed Feb 8, 2022
1 parent a7411ba commit 350e896
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ private class SeparatedSyntaxListCodeActionComputer : AbstractCodeActionComputer
/// depending on if a particular option is set (like the collection initializer brace in C#).
/// </summary>
private readonly bool _shouldMoveOpenBraceToNewLine;

/// <summary>
/// Whether or not we should move the close brace of this separated list to a new line. Some lists will
/// never move the close brace (like a parameter list), while some will always move it (like a collection
/// initializer in both C# or VB).
/// </summary>
private readonly bool _shouldMoveCloseBraceToNewLine;

public SeparatedSyntaxListCodeActionComputer(
Expand Down

0 comments on commit 350e896

Please sign in to comment.