5 references to SegmentedDictionary
Microsoft.CodeAnalysis (5)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2.cs (1)
73
public static readonly ImmutableSegmentedDictionary<TKey, TValue> Empty = new(new
SegmentedDictionary
<TKey, TValue>());
src\Dependencies\Collections\SegmentedDictionary`2.cs (3)
393
return LazyInitializer.EnsureInitialized(ref s_emptyEnumerator, static () => new Enumerator(new
SegmentedDictionary
<TKey, TValue>(), Enumerator.KeyValuePair))!;
1362
return LazyInitializer.EnsureInitialized(ref s_emptyEnumerator, static () => new Enumerator(new
SegmentedDictionary
<TKey, TValue>()))!;
1570
return LazyInitializer.EnsureInitialized(ref s_emptyEnumerator, static () => new Enumerator(new
SegmentedDictionary
<TKey, TValue>()))!;
Syntax\SyntaxNodeExtensions_Tracking.cs (1)
202
var map = new
SegmentedDictionary
<SyntaxAnnotation, List<SyntaxNode>>();