1 write to Actions
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\UnifiedSuggestions\UnifiedSuggestedActionSet.cs (1)
39
Actions
= actions;
11 references to Actions
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (1)
SuggestedActionsSource.cs (1)
218
unifiedSuggestedActionSet.
Actions
.SelectAsArray(set => ConvertToSuggestedAction(set)),
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
Suggestions\SuggestedActionsSource.cs (1)
218
unifiedSuggestedActionSet.
Actions
.SelectAsArray(set => ConvertToSuggestedAction(set)),
Microsoft.CodeAnalysis.LanguageServer.Protocol (9)
Features\UnifiedSuggestions\UnifiedSuggestedActionsSource.cs (5)
723
=> new(set.OriginalSolution, set.CategoryName, set.
Actions
, set.Title, priority, set.ApplicableToSpan);
732
return currentActionCount + actionSets.Sum(a => a.
Actions
.Count()) > 3
740
foreach (var action in actionSet.
Actions
)
747
newActions.AddRange(actionWithNestedActions.NestedActionSets.SelectMany(set => set.
Actions
));
786
foreach (var action in set.
Actions
)
Handler\CodeActions\CodeActionHelpers.cs (4)
54
foreach (var suggestedAction in set.
Actions
)
134
foreach (var nestedSuggestedAction in nestedActionSet.
Actions
)
193
foreach (var suggestedAction in set.
Actions
)
222
foreach (var action in actionSet.
Actions
)