1 implementation of IEditAndContinueAnalyzer
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
27internal abstract class AbstractEditAndContinueAnalyzer : IEditAndContinueAnalyzer
34 references to IEditAndContinueAnalyzer
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
29[ExportLanguageServiceFactory(typeof(IEditAndContinueAnalyzer), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (14)
EditAndContinue\ActiveStatementsMapTests.cs (6)
96var analyzer = project.Services.GetRequiredService<IEditAndContinueAnalyzer>(); 151var analyzer = project.Services.GetRequiredService<IEditAndContinueAnalyzer>(); 202var analyzer = project.Services.GetRequiredService<IEditAndContinueAnalyzer>();
EditAndContinue\EditSessionActiveStatementsTests.cs (8)
231var analyzer = solution.GetProject(projectId).Services.GetRequiredService<IEditAndContinueAnalyzer>(); 358var analyzer = solution.GetProject(project.Id).Services.GetRequiredService<IEditAndContinueAnalyzer>(); 543var analyzer = solution.GetProject(project.Id).Services.GetRequiredService<IEditAndContinueAnalyzer>(); 689var analyzer = solution.GetProject(project.Id).Services.GetRequiredService<IEditAndContinueAnalyzer>();
Microsoft.CodeAnalysis.Features (18)
EditAndContinue\ActiveStatementsMap.cs (3)
166internal async ValueTask<ImmutableArray<UnmappedActiveStatement>> GetOldActiveStatementsAsync(IEditAndContinueAnalyzer analyzer, Document oldDocument, CancellationToken cancellationToken) 174internal ImmutableArray<UnmappedActiveStatement> GetOldActiveStatements(IEditAndContinueAnalyzer analyzer, SyntaxTree oldSyntaxTree, SourceText oldText, SyntaxNode oldRoot, CancellationToken cancellationToken) 184private ImmutableArray<UnmappedActiveStatement> CalculateOldActiveStatementsAndExceptionRegions(IEditAndContinueAnalyzer analyzer, SyntaxTree oldTree, SourceText oldText, SyntaxNode oldRoot, CancellationToken cancellationToken)
EditAndContinue\DebuggingSession.cs (8)
682var analyzer = newProject.Services.GetRequiredService<IEditAndContinueAnalyzer>(); 807var analyzer = newProject.Services.GetRequiredService<IEditAndContinueAnalyzer>(); 960var analyzer = newDocument.Project.Services.GetRequiredService<IEditAndContinueAnalyzer>(); 1061var analyzer = newProject.Services.GetRequiredService<IEditAndContinueAnalyzer>();
EditAndContinue\EditAndContinueDocumentAnalysesCache.cs (4)
138var analyzer = newDocument.Project.Services.GetRequiredService<IEditAndContinueAnalyzer>(); 196var analyzer = document.Project.Services.GetRequiredService<IEditAndContinueAnalyzer>();
EditAndContinue\EditSession.cs (2)
619var analyzer = newProject.Services.GetRequiredService<IEditAndContinueAnalyzer>();
EditAndContinue\Extensions.cs (1)
77=> project.Services.GetService<IEditAndContinueAnalyzer>() != null;
Microsoft.CodeAnalysis.VisualBasic.Features (1)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (1)
22<ExportLanguageServiceFactory(GetType(IEditAndContinueAnalyzer), LanguageNames.VisualBasic), [Shared]>