2 types derived from AbstractFixAllSuggestedAction
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
Suggestions\SuggestedActions\FixAllCodeFixSuggestedAction.cs (1)
20internal sealed partial class FixAllCodeFixSuggestedAction : AbstractFixAllSuggestedAction, ITelemetryDiagnosticID<string>, IFixAllCodeFixSuggestedAction
Suggestions\SuggestedActions\FixAllCodeRefactoringSuggestedAction.cs (1)
18internal sealed class FixAllCodeRefactoringSuggestedAction : AbstractFixAllSuggestedAction, IFixAllCodeRefactoringSuggestedAction
9 references to AbstractFixAllSuggestedAction
Microsoft.VisualStudio.IntegrationTest.Utilities (5)
InProcess\TextViewWindow_InProc.cs (5)
424var fixAllAction = await GetFixAllSuggestedActionAsync(JoinableTaskFactory, actionSetsForAction!, fixAllScope.Value); 433&& action is AbstractFixAllSuggestedAction fixAllSuggestedAction 503private static async Task<AbstractFixAllSuggestedAction?> GetFixAllSuggestedActionAsync(JoinableTaskFactory joinableTaskFactory, IEnumerable<SuggestedActionSet> actionSets, FixAllScope fixAllScope) 511if (action is AbstractFixAllSuggestedAction fixAllSuggestedAction) 523var fixAllCodeAction = await GetFixAllSuggestedActionAsync(joinableTaskFactory, nestedActionSets!, fixAllScope);
Microsoft.VisualStudio.LanguageServices.New.IntegrationTests (4)
InProcess\EditorInProcess.cs (4)
839&& action is AbstractFixAllSuggestedAction fixAllSuggestedAction 930private async Task<AbstractFixAllSuggestedAction?> GetFixAllSuggestedActionAsync(IEnumerable<SuggestedActionSet> actionSets, FixAllScope fixAllScope, CancellationToken cancellationToken) 938if (action is AbstractFixAllSuggestedAction fixAllSuggestedAction) 950var fixAllCodeAction = await GetFixAllSuggestedActionAsync(nestedActionSets!, fixAllScope, cancellationToken);