3 instantiations of FixAllState
Microsoft.CodeAnalysis.EditorFeatures.DiagnosticsTests.Utilities (1)
CodeActions\AbstractCodeActionTest.cs (1)
87var fixAllState = new FixAllState(fixAllProvider, document, selectionSpan, provider, optionsProvider, scope, originalCodeAction);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\UnifiedSuggestions\UnifiedSuggestedActionsSource.cs (1)
614var fixAllState = new CodeRefactorings.FixAllState(
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\FixAllState.cs (1)
79return new FixAllState(
8 references to FixAllState
Microsoft.CodeAnalysis.EditorFeatures.DiagnosticsTests.Utilities (1)
CodeActions\AbstractCodeActionTest.cs (1)
87var fixAllState = new FixAllState(fixAllProvider, document, selectionSpan, provider, optionsProvider, scope, originalCodeAction);
Microsoft.CodeAnalysis.Features (1)
CodeRefactorings\FixAllOccurences\FixAllCodeRefactoringCodeAction.cs (1)
22=> new FixAllContext((FixAllState)fixAllState, progressTracker, cancellationToken);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\UnifiedSuggestions\UnifiedSuggestedActionsSource.cs (1)
614var fixAllState = new CodeRefactorings.FixAllState(
Microsoft.CodeAnalysis.Workspaces (5)
CodeRefactorings\FixAllOccurences\FixAllContext.cs (3)
24internal FixAllState State { get; } 84FixAllState state, 118var newState = State.With(documentAndProject, scope, codeActionEquivalenceKey);
CodeRefactorings\FixAllOccurences\FixAllState.cs (2)
21internal sealed class FixAllState : CommonFixAllState<CodeRefactoringProvider, FixAllProvider, FixAllState> 77protected override FixAllState With(Document? document, Project project, FixAllScope scope, string? codeActionEquivalenceKey)