1 write to Actions
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\UnifiedSuggestions\UnifiedSuggestedActionSet.cs (1)
39
Actions
= actions;
13 references to Actions
Microsoft.CodeAnalysis.LanguageServer.Protocol (13)
Features\UnifiedSuggestions\UnifiedSuggestedActionsSource.cs (5)
712
=> new(set.OriginalSolution, set.CategoryName, set.
Actions
, set.Title, priority, set.ApplicableToSpan);
721
return currentActionCount + actionSets.Sum(a => a.
Actions
.Length) > 3
729
foreach (var action in actionSet.
Actions
)
736
newActions.AddRange(actionWithNestedActions.NestedActionSets.SelectMany(set => set.
Actions
));
775
foreach (var action in set.
Actions
)
Handler\CodeActions\CodeActionHelpers.cs (8)
59
foreach (var suggestedAction in set.
Actions
)
80
foreach (var suggestedAction in set.
Actions
)
156
foreach (var action in actionSet.
Actions
)
201
var fixAllFlavors = unifiedCodeFixSuggestedAction.FixAllFlavors.
Actions
.OfType<UnifiedFixAllCodeFixSuggestedAction>().Select(action => action.FixAllState.Scope.ToString());
268
foreach (var nestedSuggestedAction in nestedActionSet.
Actions
)
327
foreach (var suggestedAction in set.
Actions
)
360
foreach (var action in actionSet.
Actions
)
384
var fixAllFlavor = unifiedCodeFixSuggestedAction.FixAllFlavors.
Actions
.OfType<UnifiedFixAllCodeFixSuggestedAction>().Where(action => action.FixAllState.Scope.ToString() == fixAllScope).First();