10 references to _dataPoints
Microsoft.VisualStudio.LanguageServices.CodeLens (10)
ReferenceCodeLensProvider.cs (10)
100lock (_dataPoints) 102keys = _dataPoints.Keys.ToImmutableArray(); 111lock (_dataPoints) 115if (_dataPoints.TryGetValue(projectGuid, out var oldVersionedPoints) 121_dataPoints[projectGuid] = (newVersion, oldVersionedPoints.dataPoints); 130lock (_dataPoints) 132var versionedPoints = _dataPoints.GetOrAdd(dataPoint.Descriptor.ProjectGuid, _ => (version: VersionStamp.Default.ToString(), dataPoints: new HashSet<DataPoint>())); 141lock (_dataPoints) 143if (_dataPoints.TryGetValue(dataPoint.Descriptor.ProjectGuid, out var points) 147_dataPoints.Remove(dataPoint.Descriptor.ProjectGuid);