/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Analyzers/CSharp/CodeFixes/InvokeDelegateWithConditionalAccess/InvokeDelegateWithConditionalAccessCodeFixProvider.cs
156 строк
8 KB
Cyrus Najmabadi
Reapply "Update methods to be `async`." (#81808)
31 дек 2025, 02:04
31 дек 2025, 02:04
ba729ad
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Immutable; using System.Composition; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.CSharp.Extensions; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Editing; using Microsoft.CodeAnalysis.Formatting; using Microsoft.CodeAnalysis.Shared.Extensions; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.CSharp.InvokeDelegateWithConditionalAccess; using static SyntaxFactory; [ExportCodeFixProvider(LanguageNames.CSharp, Name = PredefinedCodeFixProviderNames.InvokeDelegateWithConditionalAccess), Shared] [method: ImportingConstructor] [method: SuppressMessage("RoslynDiagnosticsReliability", "RS0033:Importing constructor should be [Obsolete]", Justification = "Used in test code: https://github.com/dotnet/roslyn/issues/42814")] internal sealed partial class InvokeDelegateWithConditionalAccessCodeFixProvider() : SyntaxEditorBasedCodeFixProvider { public override ImmutableArray<string> FixableDiagnosticIds { get; } = [IDEDiagnosticIds.InvokeDelegateWithConditionalAccessId]; // Filter out the diagnostics we created for the faded out code. We don't want // to try to fix those as well as the normal diagnostics we created. protected override bool IncludeDiagnosticDuringFixAll(Diagnostic diagnostic) => !diagnostic.Properties.ContainsKey(WellKnownDiagnosticTags.Unnecessary); public override async Task RegisterCodeFixesAsync(CodeFixContext context) { RegisterCodeFix(context, CSharpAnalyzersResources.Simplify_delegate_invocation, nameof(CSharpAnalyzersResources.Simplify_delegate_invocation)); } protected override async Task FixAllAsync( Document document, ImmutableArray<Diagnostic> diagnostics, SyntaxEditor editor, CancellationToken cancellationToken) { foreach (var diagnostic in diagnostics) { cancellationToken.ThrowIfCancellationRequested(); AddEdits(editor, diagnostic, cancellationToken); } } private static void AddEdits( SyntaxEditor editor, Diagnostic diagnostic, CancellationToken cancellationToken) { if (diagnostic.Properties[Constants.Kind] == Constants.VariableAndIfStatementForm) { HandleVariableAndIfStatementForm(editor, diagnostic, cancellationToken); } else { Debug.Assert(diagnostic.Properties[Constants.Kind] == Constants.SingleIfStatementForm); HandleSingleIfStatementForm(editor, diagnostic, cancellationToken); } } private static void HandleSingleIfStatementForm( SyntaxEditor editor, Diagnostic diagnostic, CancellationToken cancellationToken) { // May be at the top level, pass `getInnermostNodeForTie: true` to peer into global statement. var ifStatement = (IfStatementSyntax)diagnostic.AdditionalLocations[0].FindNode(getInnermostNodeForTie: true, cancellationToken); cancellationToken.ThrowIfCancellationRequested(); // Always under another statement.block. So getInnermostNodeForTie: true` is not necessary, but keeps things consistent. var expressionStatement = (ExpressionStatementSyntax)diagnostic.AdditionalLocations[1].FindNode(getInnermostNodeForTie: true, cancellationToken); cancellationToken.ThrowIfCancellationRequested(); var invocationExpression = (InvocationExpressionSyntax)expressionStatement.Expression; cancellationToken.ThrowIfCancellationRequested(); var (invokedExpression, invokeName) = invocationExpression.Expression is MemberAccessExpressionSyntax { Name: IdentifierNameSyntax { Identifier.ValueText: nameof(Action.Invoke) } } memberAccessExpression ? (memberAccessExpression.Expression, memberAccessExpression.Name) : (invocationExpression.Expression, IdentifierName(nameof(Action.Invoke))); StatementSyntax newStatement = expressionStatement.WithExpression( ConditionalAccessExpression( invokedExpression, InvocationExpression( MemberBindingExpression(invokeName), invocationExpression.ArgumentList))); newStatement = newStatement.WithPrependedLeadingTrivia(ifStatement.GetLeadingTrivia()); if (ifStatement.Parent.IsKind(SyntaxKind.ElseClause) && ifStatement.Statement is BlockSyntax block) { newStatement = block.WithStatements([newStatement]); } newStatement = newStatement.WithAdditionalAnnotations(Formatter.Annotation); newStatement = AppendTriviaWithoutEndOfLines(newStatement, ifStatement); cancellationToken.ThrowIfCancellationRequested(); editor.ReplaceNode(ifStatement, newStatement); } private static void HandleVariableAndIfStatementForm( SyntaxEditor editor, Diagnostic diagnostic, CancellationToken cancellationToken) { // May be at the top level, pass `getInnermostNodeForTie: true` to peer into global statement. var localDeclarationStatement = (LocalDeclarationStatementSyntax)diagnostic.AdditionalLocations[0].FindNode(getInnermostNodeForTie: true, cancellationToken); cancellationToken.ThrowIfCancellationRequested(); // May be at the top level, pass `getInnermostNodeForTie: true` to peer into global statement. var ifStatement = (IfStatementSyntax)diagnostic.AdditionalLocations[1].FindNode(getInnermostNodeForTie: true, cancellationToken); cancellationToken.ThrowIfCancellationRequested(); // Always under another statement.block. So getInnermostNodeForTie: true` is not necessary, but keeps things consistent. var expressionStatement = (ExpressionStatementSyntax)diagnostic.AdditionalLocations[2].FindNode(getInnermostNodeForTie: true, cancellationToken); cancellationToken.ThrowIfCancellationRequested(); var invocationExpression = (InvocationExpressionSyntax)expressionStatement.Expression; var invokeName = invocationExpression.Expression is MemberAccessExpressionSyntax { Name: IdentifierNameSyntax { Identifier.ValueText: nameof(Action.Invoke) } } memberAccessExpression ? memberAccessExpression.Name : IdentifierName(nameof(Action.Invoke)); var newStatement = expressionStatement.WithExpression( ConditionalAccessExpression( localDeclarationStatement.Declaration.Variables[0].Initializer!.Value.Parenthesize(), InvocationExpression( MemberBindingExpression(invokeName), invocationExpression.ArgumentList))); newStatement = newStatement.WithAdditionalAnnotations(Formatter.Annotation); newStatement = AppendTriviaWithoutEndOfLines(newStatement, ifStatement); editor.ReplaceNode(ifStatement, newStatement); editor.RemoveNode(localDeclarationStatement, SyntaxRemoveOptions.KeepLeadingTrivia | SyntaxRemoveOptions.AddElasticMarker); cancellationToken.ThrowIfCancellationRequested(); } private static T AppendTriviaWithoutEndOfLines<T>(T newStatement, IfStatementSyntax ifStatement) where T : SyntaxNode { // We're combining trivia from the delegate invocation and the end of the if statement // but we don't want two EndOfLines so we ignore the one on the invocation (if it exists) var expressionTrivia = newStatement.GetTrailingTrivia(); var expressionTriviaWithoutEndOfLine = expressionTrivia.Where(t => !t.IsKind(SyntaxKind.EndOfLineTrivia)); var ifStatementTrivia = ifStatement.GetTrailingTrivia(); return newStatement.WithTrailingTrivia(expressionTriviaWithoutEndOfLine.Concat(ifStatementTrivia)); } }