Skip to content

Commit 296142b

Browse files
authored
Fix analyzer RCS0061 (#1376)
1 parent 7ebf415 commit 296142b

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

ChangeLog.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2626
- Fix analyzer [RCS1261](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1261) ([PR](https://github.com/dotnet/roslynator/pull/1374))
2727
- Fix analyzer [RCS0056](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS0056) ([PR](https://github.com/dotnet/roslynator/pull/1373))
2828
- Fix analyzer [RCS1211](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1211) ([PR](https://github.com/dotnet/roslynator/pull/1377))
29+
- Fix analyzer [RCS0061](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS0061) ([PR](https://github.com/dotnet/roslynator/pull/1376))
2930

3031
## [4.9.0] - 2024-01-10
3132

src/Formatting.Analyzers/CSharp/BlankLineBetweenSwitchSectionsAnalyzer.cs

+17-17
Original file line numberDiff line numberDiff line change
@@ -55,30 +55,30 @@ private static void AnalyzeSwitchStatement(SyntaxNodeAnalysisContext context)
5555
{
5656
TriviaBlock block = TriviaBlock.FromBetween(previousSection, en.Current);
5757

58-
if (!block.Success)
59-
continue;
60-
61-
if (block.Kind == TriviaBlockKind.BlankLine)
58+
if (block.Success)
6259
{
63-
if (option == BlankLineBetweenSwitchSections.Omit)
60+
if (block.Kind == TriviaBlockKind.BlankLine)
61+
{
62+
if (option == BlankLineBetweenSwitchSections.Omit)
63+
{
64+
ReportDiagnostic(context, block, "Remove");
65+
}
66+
else if (option == BlankLineBetweenSwitchSections.OmitAfterBlock
67+
&& previousLastStatement.IsKind(SyntaxKind.Block))
68+
{
69+
ReportDiagnostic(context, block, "Remove");
70+
}
71+
}
72+
else if (option == BlankLineBetweenSwitchSections.Include)
6473
{
65-
ReportDiagnostic(context, block, "Remove");
74+
ReportDiagnostic(context, block, "Add");
6675
}
6776
else if (option == BlankLineBetweenSwitchSections.OmitAfterBlock
68-
&& previousLastStatement.IsKind(SyntaxKind.Block))
77+
&& !previousLastStatement.IsKind(SyntaxKind.Block))
6978
{
70-
ReportDiagnostic(context, block, "Remove");
79+
ReportDiagnostic(context, block, "Add");
7180
}
7281
}
73-
else if (option == BlankLineBetweenSwitchSections.Include)
74-
{
75-
ReportDiagnostic(context, block, "Add");
76-
}
77-
else if (option == BlankLineBetweenSwitchSections.OmitAfterBlock
78-
&& !previousLastStatement.IsKind(SyntaxKind.Block))
79-
{
80-
ReportDiagnostic(context, block, "Add");
81-
}
8282

8383
previousSection = en.Current;
8484
previousLastStatement = previousSection.Statements.LastOrDefault();

0 commit comments

Comments
 (0)