1 write to RefactorOrFixAllState
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Suggestions\SuggestedAction.cs (1)
87RefactorOrFixAllState = refactorOrFixAllState;
7 references to RefactorOrFixAllState
Microsoft.CodeAnalysis.EditorFeatures (2)
Suggestions\SuggestedActionsSource_Async.cs (2)
279if (action.RefactorOrFixAllState != null) 283action.RefactorOrFixAllState, action.CodeAction,
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Features\Suggestions\SuggestedAction.cs (1)
60/// cref="Flavors"/> and <see cref="RefactorOrFixAllState"/> will be <see langword="null"/>.
Handler\CodeActions\CodeActionHelpers.cs (4)
201var flavorStrings = fixAllFlavors.Actions.Select(a => a.RefactorOrFixAllState?.Scope.ToString()).WhereNotNull(); 376var fixAllFlavor = suggestedAction.Flavors.Value.Actions.Where(a => a.RefactorOrFixAllState != null && a.RefactorOrFixAllState.Scope.ToString() == fixAllScope).First(); 378fixAllFlavor.RefactorOrFixAllState!, showPreviewChangesDialog: false, title: codeAction.Title));