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