4 references to GetDocumentAnalysisAsync
Microsoft.CodeAnalysis.Features (4)
EditAndContinue\DebuggingSession.cs (3)
491
var analysis = await EditSession.Analyses.
GetDocumentAnalysisAsync
(LastCommittedSolution, oldDocument, document, activeStatementSpanProvider, cancellationToken).ConfigureAwait(false);
826
var analysis = await EditSession.Analyses.
GetDocumentAnalysisAsync
(LastCommittedSolution, oldUnmappedDocument, newUnmappedDocument, activeStatementSpanProvider, cancellationToken).ConfigureAwait(false);
891
var analysis = await EditSession.Analyses.
GetDocumentAnalysisAsync
(LastCommittedSolution, oldDocument, newDocument, activeStatementSpanProvider, cancellationToken).ConfigureAwait(false);
EditAndContinue\EditAndContinueDocumentAnalysesCache.cs (1)
51
var tasks = documents.Select(document => Task.Run(() =>
GetDocumentAnalysisAsync
(oldSolution, document.oldDocument, document.newDocument, activeStatementSpanProvider, cancellationToken).AsTask(), cancellationToken));