1 implementation of IEditAndContinueAnalyzer
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
29internal abstract class AbstractEditAndContinueAnalyzer : IEditAndContinueAnalyzer
12 references to IEditAndContinueAnalyzer
Microsoft.CodeAnalysis.Features (12)
EditAndContinue\ActiveStatementsMap.cs (3)
172internal async ValueTask<ImmutableArray<UnmappedActiveStatement>> GetOldActiveStatementsAsync(IEditAndContinueAnalyzer analyzer, Document oldDocument, CancellationToken cancellationToken) 180internal ImmutableArray<UnmappedActiveStatement> GetOldActiveStatements(IEditAndContinueAnalyzer analyzer, SyntaxTree oldSyntaxTree, SourceText oldText, SyntaxNode oldRoot, CancellationToken cancellationToken) 190private ImmutableArray<UnmappedActiveStatement> CalculateOldActiveStatementsAndExceptionRegions(IEditAndContinueAnalyzer analyzer, SyntaxTree oldTree, SourceText oldText, SyntaxNode oldRoot, CancellationToken cancellationToken)
EditAndContinue\DebuggingSession.cs (3)
674var analyzer = newProject.Services.GetRequiredService<IEditAndContinueAnalyzer>(); 800var analyzer = newProject.Services.GetRequiredService<IEditAndContinueAnalyzer>();
EditAndContinue\EditAndContinueDocumentAnalysesCache.cs (3)
131var analyzer = newDocument.Project.Services.GetRequiredService<IEditAndContinueAnalyzer>(); 189var analyzer = arg.document.Project.Services.GetRequiredService<IEditAndContinueAnalyzer>();
EditAndContinue\EditSession.cs (2)
624var analyzer = newProject.Services.GetRequiredService<IEditAndContinueAnalyzer>();
EditAndContinue\Utilities\Extensions.cs (1)
41=> project.Services.GetService<IEditAndContinueAnalyzer>() != null;