1 write to NestedActionSets
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Suggestions\SuggestedAction.cs (1)
86
NestedActionSets
= nestedActionSets;
12 references to NestedActionSets
Microsoft.CodeAnalysis.EditorFeatures (2)
Suggestions\SuggestedActionsSource_Async.cs (2)
286
else if (!action.
NestedActionSets
.IsEmpty)
291
action.
NestedActionSets
.SelectAsArray(s => ConvertToSuggestedActionSet(s, originalDocument)));
Microsoft.CodeAnalysis.LanguageServer.Protocol (10)
Features\Suggestions\SuggestedAction.cs (2)
52
/// cref="
NestedActionSets
"/> will be empty and <see cref="RefactorOrFixAllCodeAction"/> will be <see
66
/// <see langword="null"/> and <see cref="
NestedActionSets
"/> will be empty.
Features\Suggestions\UnifiedSuggestedActionsSource.cs (2)
700
if (action is { CodeAction.IsInlinable: true,
NestedActionSets
.Length: > 0 })
702
newActions.AddRange(action.
NestedActionSets
.SelectMany(set => set.Actions));
Handler\CodeActions\CodeActionHelpers.cs (6)
152
if (!suggestedAction.
NestedActionSets
.IsEmpty)
154
foreach (var actionSet in suggestedAction.
NestedActionSets
)
258
if (suggestedAction.
NestedActionSets
.IsEmpty)
262
foreach (var nestedActionSet in suggestedAction.
NestedActionSets
)
350
if (suggestedAction.
NestedActionSets
.IsEmpty)
354
foreach (var actionSet in suggestedAction.
NestedActionSets
)