10 references to _dataPoints
Microsoft.VisualStudio.LanguageServices.CodeLens (10)
ReferenceCodeLensProvider.cs (10)
98lock (_dataPoints) 100keys = _dataPoints.Keys.ToImmutableArray(); 109lock (_dataPoints) 113if (_dataPoints.TryGetValue(projectGuid, out var oldVersionedPoints) 119_dataPoints[projectGuid] = (newVersion, oldVersionedPoints.dataPoints); 128lock (_dataPoints) 130var versionedPoints = _dataPoints.GetOrAdd(dataPoint.Descriptor.ProjectGuid, _ => (version: VersionStamp.Default.ToString(), dataPoints: new HashSet<DataPoint>())); 139lock (_dataPoints) 141if (_dataPoints.TryGetValue(dataPoint.Descriptor.ProjectGuid, out var points) 145_dataPoints.Remove(dataPoint.Descriptor.ProjectGuid);