1 write to Flavors
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Suggestions\SuggestedAction.cs (1)
85Flavors = flavors;
6 references to Flavors
Microsoft.CodeAnalysis.EditorFeatures (1)
Suggestions\SuggestedActionsSource_Async.cs (1)
297ConvertFlavors(action.Flavors), action.Diagnostics);
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Features\Suggestions\SuggestedAction.cs (2)
60/// cref="Flavors"/> and <see cref="RefactorOrFixAllState"/> will be <see langword="null"/>. 65/// Non-null if this is a fix-all or refactor-all action. If this is non-null, then <see cref="Flavors"/> will be
Handler\CodeActions\CodeActionHelpers.cs (3)
199if (suggestedAction is SuggestedAction { Flavors: { } fixAllFlavors }) 371if (suggestedAction.Flavors is null) 376var fixAllFlavor = suggestedAction.Flavors.Value.Actions.Where(a => a.RefactorOrFixAllState != null && a.RefactorOrFixAllState.Scope.ToString() == fixAllScope).First();