10 references to _dataPoints
Microsoft.VisualStudio.LanguageServices.CodeLens (10)
ReferenceCodeLensProvider.cs (10)
102lock (_dataPoints) 104keys = [.. _dataPoints.Keys]; 113lock (_dataPoints) 117if (_dataPoints.TryGetValue(projectGuid, out var oldVersionedPoints) 123_dataPoints[projectGuid] = (newVersion, oldVersionedPoints.dataPoints); 132lock (_dataPoints) 134var versionedPoints = _dataPoints.GetOrAdd(dataPoint.Descriptor.ProjectGuid, _ => (version: VersionStamp.Default.ToString(), dataPoints: [])); 143lock (_dataPoints) 145if (_dataPoints.TryGetValue(dataPoint.Descriptor.ProjectGuid, out var points) 149_dataPoints.Remove(dataPoint.Descriptor.ProjectGuid);