1 write to RefactorOrFixAllState
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Suggestions\SuggestedAction.cs (1)
87
RefactorOrFixAllState
= refactorOrFixAllState;
7 references to RefactorOrFixAllState
Microsoft.CodeAnalysis.EditorFeatures (2)
Suggestions\SuggestedActionsSource_Async.cs (2)
279
if (action.
RefactorOrFixAllState
!= null)
283
action.
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)
201
var flavorStrings = fixAllFlavors.Actions.Select(a => a.
RefactorOrFixAllState
?.Scope.ToString()).WhereNotNull();
376
var fixAllFlavor = suggestedAction.Flavors.Value.Actions.Where(a => a.
RefactorOrFixAllState
!= null && a.
RefactorOrFixAllState
.Scope.ToString() == fixAllScope).First();
378
fixAllFlavor.
RefactorOrFixAllState
!, showPreviewChangesDialog: false, title: codeAction.Title));