2 writes to _lazyLatestDocumentVersion
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Solution\ProjectState.cs (2)
81
_lazyLatestDocumentVersion
= lazyLatestDocumentVersion;
119
_lazyLatestDocumentVersion
= AsyncLazy.Create(static async (self, c) => await ComputeLatestDocumentVersionAsync(self.DocumentStates, self.AdditionalDocumentStates, c).ConfigureAwait(false), arg: this);
4 references to _lazyLatestDocumentVersion
Microsoft.CodeAnalysis.Workspaces (4)
Workspace\Solution\ProjectState.cs (4)
619
=>
_lazyLatestDocumentVersion
.GetValueAsync(cancellationToken);
721
latestDocumentVersion ??
_lazyLatestDocumentVersion
,
1079
if (!
_lazyLatestDocumentVersion
.TryGetValue(out var documentVersion) || documentVersion == oldVersion)
1112
dependentDocumentVersion =
_lazyLatestDocumentVersion
;