3 instantiations of RefactorOrFixAllCodeAction
Microsoft.CodeAnalysis.EditorFeatures (2)
Suggestions\FixAll\FixMultipleOccurrencesService.cs (1)
71var fixMultipleCodeAction = new RefactorOrFixAllCodeAction(
Suggestions\SuggestedActions\EditorSuggestedActionForRefactorOrFixAll.cs (1)
33new RefactorOrFixAllCodeAction(fixAllState, showPreviewChangesDialog: true)),
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\CodeActions\CodeActionHelpers.cs (1)
377codeActions.Add(new RefactorOrFixAllCodeAction(
11 references to RefactorOrFixAllCodeAction
Microsoft.CodeAnalysis.EditorFeatures (5)
Suggestions\FixAll\FixMultipleOccurrencesService.cs (2)
20/// Service to compute and apply <see cref="RefactorOrFixAllCodeAction"/> code fixes. 71var fixMultipleCodeAction = new RefactorOrFixAllCodeAction(
Suggestions\SuggestedActions\EditorSuggestedAction.cs (1)
178if (CodeAction is RefactorOrFixAllCodeAction fixSome)
Suggestions\SuggestedActions\EditorSuggestedActionForRefactorOrFixAll.cs (2)
38internal new RefactorOrFixAllCodeAction CodeAction => (RefactorOrFixAllCodeAction)base.CodeAction;
Microsoft.CodeAnalysis.Features (2)
CodeFixesAndRefactorings\AbstractFixAllCodeAction.cs (2)
125private readonly RefactorOrFixAllCodeAction _fixAllCodeAction; 127internal TestAccessor(RefactorOrFixAllCodeAction fixAllCodeAction)
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Features\Suggestions\SuggestedAction.cs (1)
52/// cref="NestedActionSets"/> will be empty and <see cref="RefactorOrFixAllCodeAction"/> will be <see
Handler\CodeActions\CodeActionFixAllResolveHandler.cs (2)
57var fixAllCodeAction = (RefactorOrFixAllCodeAction)codeActionToResolve;
Handler\CodeActions\CodeActionHelpers.cs (1)
450matchingAction = matchingActions.Single(action => isFixAllAction ? action is RefactorOrFixAllCodeAction : action is CodeAction);