13 instantiations of FixAllState
Microsoft.CodeAnalysis.CodeStyle.LegacyTestFramework.UnitTestUtilities (2)
AbstractUserDiagnosticTest.cs (2)
214? new FixAllState(fixAllProvider, diagnostic.Location.SourceSpan, document, document.Project, fixer, scope, equivalenceKey, diagnosticIds, fixAllDiagnosticProvider, optionsProvider) 215: new FixAllState(fixAllProvider, diagnosticSpan: null, document: null, document.Project, fixer, scope, equivalenceKey, diagnosticIds, fixAllDiagnosticProvider, optionsProvider);
Microsoft.CodeAnalysis.EditorFeatures.DiagnosticsTests.Utilities (3)
CodeActions\CSharpCodeFixVerifier`2+Test.cs (1)
123=> new(new FixAllState(
Diagnostics\AbstractUserDiagnosticTest.cs (2)
214? new FixAllState(fixAllProvider, diagnostic.Location.SourceSpan, document, document.Project, fixer, scope, equivalenceKey, diagnosticIds, fixAllDiagnosticProvider, optionsProvider) 215: new FixAllState(fixAllProvider, diagnosticSpan: null, document: null, document.Project, fixer, scope, equivalenceKey, diagnosticIds, fixAllDiagnosticProvider, optionsProvider);
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
CodeActions\OmniSharpCodeFixContextFactory.cs (1)
46=> new(new FixAllState(
Microsoft.CodeAnalysis.Features (1)
SyncNamespaces\AbstractSyncNamespacesService.cs (1)
120new FixAllState(
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\CodeFixes\CodeFixService.cs (1)
736fixAllState = new FixAllState(
Microsoft.CodeAnalysis.Workspaces (5)
CodeFixes\FixAllOccurrences\FixAllContext.cs (2)
157: this(new FixAllState( 193: this(new FixAllState(
CodeFixes\FixAllOccurrences\FixAllState.cs (3)
51=> new( 76return new FixAllState( 99return new FixAllState(
47 references to FixAllState
Microsoft.CodeAnalysis.CodeStyle.Fixes (2)
SyntaxEditorBasedCodeFixProvider.cs (2)
110/// that it also passes along the <see cref="FixAllState"/> in case that would be useful 131/// overload needs to be overridden. However, if information from <see cref="FixAllState"/>
Microsoft.CodeAnalysis.CodeStyle.LegacyTestFramework.UnitTestUtilities (3)
AbstractUserDiagnosticTest.cs (3)
179var fixAllState = GetFixAllState( 190private static FixAllState GetFixAllState( 206return FixAllState.Create(fixAllProvider, diagnosticsToFix, fixer, equivalenceKey, optionsProvider);
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (5)
FixMultipleOccurrencesService.cs (5)
47var fixMultipleState = FixAllState.Create( 66var fixMultipleState = FixAllState.Create( 75FixAllState fixAllState,
Microsoft.CodeAnalysis.EditorFeatures.DiagnosticsTests.Utilities (3)
Diagnostics\AbstractUserDiagnosticTest.cs (3)
179var fixAllState = GetFixAllState( 190private static FixAllState GetFixAllState( 206return FixAllState.Create(fixAllProvider, diagnosticsToFix, fixer, equivalenceKey, optionsProvider);
Microsoft.CodeAnalysis.EditorFeatures.Wpf (5)
Suggestions\FixAll\FixMultipleOccurrencesService.cs (5)
47var fixMultipleState = FixAllState.Create( 66var fixMultipleState = FixAllState.Create( 75FixAllState fixAllState,
Microsoft.CodeAnalysis.Features (18)
CodeFixes\CodeFixCollection.cs (2)
25public FixAllState FixAllState { get; } 33FixAllState fixAllState,
CodeFixes\FixAllOccurrences\AbstractFixAllCodeFixCodeAction.cs (1)
28=> new FixAllContext((FixAllState)fixAllState, progressTracker, cancellationToken);
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (10)
56var fixAllState = fixAllContext.State; 81var fixAllState = fixAllContext.State; 122FixAllState fixAllState, IProgressTracker progressTracker, CancellationToken cancellationToken) 137FixAllState fixAllState, CancellationToken cancellationToken) 166var fixAllState = fixAllContext.State; 202FixAllState fixAllState, 229FixAllState fixAllState, CancellationToken cancellationToken) 236FixAllState fixAllState, CancellationToken cancellationToken) 252public virtual string GetFixAllTitle(FixAllState fixAllState) 258FixAllState fixAllState, CancellationToken cancellationToken)
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.PragmaBatchFixHelpers.cs (1)
31FixAllState fixAllState,
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.PragmaWarningBatchFixAllProvider.cs (1)
33FixAllState fixAllState, CancellationToken cancellationToken)
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.RemoveSuppressionCodeAction.BatchFixer.cs (3)
39FixAllState fixAllState, CancellationToken cancellationToken) 89FixAllState fixAllState, CancellationToken cancellationToken) 109FixAllState fixAllState,
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\CodeFixes\CodeFixService.cs (1)
722FixAllState? fixAllState = null;
Microsoft.CodeAnalysis.Workspaces (10)
CodeFixes\FixAllOccurrences\FixAllContext.cs (3)
24internal FixAllState State { get; } 214FixAllState state, 347var newState = State.With(documentAndProject, scope, codeActionEquivalenceKey);
CodeFixes\FixAllOccurrences\FixAllContext.DiagnosticProvider.cs (1)
51if (fixAllContext.State.DiagnosticProvider is FixAllState.FixMultipleDiagnosticProvider fixMultipleDiagnosticProvider)
CodeFixes\FixAllOccurrences\FixAllState.cs (4)
16internal sealed partial class FixAllState : CommonFixAllState<CodeFixProvider, FixAllProvider, FixAllState> 50protected override FixAllState With(Document? document, Project project, FixAllScope scope, string? codeActionEquivalenceKey) 65internal static FixAllState Create( 89internal static FixAllState Create(
SyntaxEditorBasedCodeFixProvider.cs (2)
110/// that it also passes along the <see cref="FixAllState"/> in case that would be useful 131/// overload needs to be overridden. However, if information from <see cref="FixAllState"/>