1 write to NestedActionSets
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Suggestions\SuggestedAction.cs (1)
86NestedActionSets = nestedActionSets;
12 references to NestedActionSets
Microsoft.CodeAnalysis.EditorFeatures (2)
Suggestions\SuggestedActionsSource_Async.cs (2)
286else if (!action.NestedActionSets.IsEmpty) 291action.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)
700if (action is { CodeAction.IsInlinable: true, NestedActionSets.Length: > 0 }) 702newActions.AddRange(action.NestedActionSets.SelectMany(set => set.Actions));
Handler\CodeActions\CodeActionHelpers.cs (6)
152if (!suggestedAction.NestedActionSets.IsEmpty) 154foreach (var actionSet in suggestedAction.NestedActionSets) 258if (suggestedAction.NestedActionSets.IsEmpty) 262foreach (var nestedActionSet in suggestedAction.NestedActionSets) 350if (suggestedAction.NestedActionSets.IsEmpty) 354foreach (var actionSet in suggestedAction.NestedActionSets)