Skip to content

Commit

Permalink
Update SA1011 to not require space before a range operator
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornhellander committed Oct 15, 2023
1 parent d1c94ed commit 60e65ff
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,25 @@ public void TestMethod(object?[] arguments)

await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(false);
}

[Fact]
[WorkItem(3708, "https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/3708")]
public async Task TestClosingSquareBracketFollowedByRangeAsync()
{
var testCode = @"namespace TestNamespace
{
public class TestClass
{
public void TestMethod(int[] arg)
{
_ = arg[0]..;
_ = arg[0] ..;
}
}
}
";

await VerifyCSharpDiagnosticAsync(testCode, DiagnosticResult.EmptyDiagnosticResults, CancellationToken.None).ConfigureAwait(false);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ private static void HandleCloseBracketToken(SyntaxTreeAnalysisContext context, S
case SyntaxKind.OpenBracketToken:
case SyntaxKind.CloseParenToken:
case SyntaxKind.MinusGreaterThanToken:
case SyntaxKindEx.DotDotToken:
precedesSpecialCharacter = true;
break;

Expand Down

0 comments on commit 60e65ff

Please sign in to comment.