Skip to content

Commit

Permalink
remembering to update unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
belav committed Apr 26, 2021
1 parent 2440de7 commit c3cb88b
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ class ClassName
}

if (
MethodKind is not (MethodKind.Ordinary
or MethodKind.LocalFunction)
MethodKind
is not (MethodKind.Ordinary
or MethodKind.LocalFunction)
) {
return;
}
Expand All @@ -32,11 +33,12 @@ class ClassName
}

var useLine =
node.OperatorToken.Kind() is SyntaxKind.BarBarToken
or SyntaxKind.BarToken
or SyntaxKind.AmpersandAmpersandToken
or SyntaxKind.AmpersandToken
or SyntaxKind.PlusToken;
node.OperatorToken.Kind()
is SyntaxKind.BarBarToken
or SyntaxKind.BarToken
or SyntaxKind.AmpersandAmpersandToken
or SyntaxKind.AmpersandToken
or SyntaxKind.PlusToken;

if (
Nullable.GetUnderlyingType111111111111111(typeof(T))
Expand Down

0 comments on commit c3cb88b

Please sign in to comment.