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
.Count()) > 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)
56
foreach (var suggestedAction in set.
Actions
)
77
foreach (var suggestedAction in set.
Actions
)
149
foreach (var action in actionSet.
Actions
)
194
var fixAllFlavors = unifiedCodeFixSuggestedAction.FixAllFlavors.
Actions
.OfType<UnifiedFixAllCodeFixSuggestedAction>().Select(action => action.FixAllState.Scope.ToString());
261
foreach (var nestedSuggestedAction in nestedActionSet.
Actions
)
320
foreach (var suggestedAction in set.
Actions
)
354
foreach (var action in actionSet.
Actions
)
378
var fixAllFlavor = unifiedCodeFixSuggestedAction.FixAllFlavors.
Actions
.OfType<UnifiedFixAllCodeFixSuggestedAction>().Where(action => action.FixAllState.Scope.ToString() == fixAllScope).First();