1 write to LastCommittedSolution
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\DebuggingSession.cs (1)
133
LastCommittedSolution
= new CommittedSolution(this, solution, initialDocumentStates);
13 references to LastCommittedSolution
Microsoft.CodeAnalysis.Features (13)
EditAndContinue\DebuggingSession.cs (10)
458
var (oldDocument, oldDocumentState) = await
LastCommittedSolution
.GetDocumentAndStateAsync(document.Id, document, cancellationToken).ConfigureAwait(false);
467
var analysis = await EditSession.Analyses.GetDocumentAnalysisAsync(
LastCommittedSolution
, oldDocument, document, activeStatementSpanProvider, cancellationToken).ConfigureAwait(false);
533
LastCommittedSolution
.CommitSolution(solution);
590
LastCommittedSolution
.CommitSolution(pendingSolutionUpdate.Solution);
621
LastCommittedSolution
.CommitSolution(solution);
709
var oldProject =
LastCommittedSolution
.GetProject(projectId);
729
var (oldDocument, _) = await
LastCommittedSolution
.GetDocumentAndStateAsync(newDocument.Id, newDocument, cancellationToken).ConfigureAwait(false);
827
var oldProject =
LastCommittedSolution
.GetProject(newProject.Id);
860
var (oldUnmappedDocument, _) = await
LastCommittedSolution
.GetDocumentAndStateAsync(newUnmappedDocument.Id, newUnmappedDocument, cancellationToken).ConfigureAwait(false);
867
var analysis = await EditSession.Analyses.GetDocumentAnalysisAsync(
LastCommittedSolution
, oldUnmappedDocument, newUnmappedDocument, activeStatementSpanProvider, cancellationToken).ConfigureAwait(false);
EditAndContinue\EditSession.cs (3)
545
var (oldDocument, oldDocumentState) = await DebuggingSession.
LastCommittedSolution
.GetDocumentAndStateAsync(newDocument.Id, newDocument, cancellationToken, reloadOutOfSyncDocument: true).ConfigureAwait(false);
571
var analyses = await Analyses.GetDocumentAnalysesAsync(DebuggingSession.
LastCommittedSolution
, documents, newDocumentActiveStatementSpanProvider, cancellationToken).ConfigureAwait(false);
822
var oldSolution = DebuggingSession.
LastCommittedSolution
;