2 instantiations of RefactorAllState
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Suggestions\UnifiedSuggestedActionsSource.cs (1)
579var fixAllState = new RefactorAllState(
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\RefactorAllState.cs (1)
74return new RefactorAllState(
8 references to RefactorAllState
Microsoft.CodeAnalysis.Features (1)
CodeFixesAndRefactorings\AbstractFixAllCodeAction.cs (1)
50RefactorAllState refactorAllState => new RefactorAllContext(refactorAllState, progressTracker, cancellationToken),
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Suggestions\UnifiedSuggestedActionsSource.cs (1)
579var fixAllState = new RefactorAllState(
Microsoft.CodeAnalysis.Workspaces (6)
CodeFixesAndRefactorings\IRefactorOrFixAllState.cs (1)
11/// Represents internal <see cref="FixAllState"/> or <see cref="RefactorAllState"/>.
CodeRefactorings\FixAllOccurences\RefactorAllContext.cs (3)
24internal RefactorAllState State { get; } 76var newState = State.With(documentAndProject, scope, codeActionEquivalenceKey); 86RefactorAllState state,
CodeRefactorings\FixAllOccurences\RefactorAllState.cs (2)
20internal sealed class RefactorAllState : CommonFixAllState<CodeRefactoringProvider, RefactorAllProvider, RefactorAllState> 72protected override RefactorAllState With(Document? document, Project project, FixAllScope scope, string? codeActionEquivalenceKey)