6 instantiations of SetWithInsertionOrder
Microsoft.CodeAnalysis (2)
InternalUtilities\OrderedMultiDictionary.cs (2)
28? set : new SetWithInsertionOrder<V>(); 44set = new SetWithInsertionOrder<V>();
Microsoft.CodeAnalysis.CSharp (3)
Lowering\ClosureConversion\ClosureConversion.Analysis.cs (1)
308var closures = new SetWithInsertionOrder<NestedFunction>();
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (2)
52public readonly SetWithInsertionOrder<Symbol> DeclaredVariables = new SetWithInsertionOrder<Symbol>(); 189CapturedVariables = new SetWithInsertionOrder<Symbol>();
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Source\SourceNamedTypeSymbol.vb (1)
1295Dim interfaces As New SetWithInsertionOrder(Of NamedTypeSymbol)
15 references to SetWithInsertionOrder
Microsoft.CodeAnalysis (8)
InternalUtilities\OrderedMultiDictionary.cs (8)
11internal sealed class OrderedMultiDictionary<K, V> : IEnumerable<KeyValuePair<K, SetWithInsertionOrder<V>>> 14private readonly Dictionary<K, SetWithInsertionOrder<V>> _dictionary; 22public SetWithInsertionOrder<V> this[K k] 26SetWithInsertionOrder<V>? set; 34_dictionary = new Dictionary<K, SetWithInsertionOrder<V>>(); 40SetWithInsertionOrder<V>? set; 60public IEnumerator<KeyValuePair<K, SetWithInsertionOrder<V>>> GetEnumerator() 64yield return new KeyValuePair<K, SetWithInsertionOrder<V>>(
Microsoft.CodeAnalysis.CSharp (4)
Lowering\ClosureConversion\ClosureConversion.Analysis.cs (2)
287var variablesInEnvironment = scope.DeclaredVariables; 308var closures = new SetWithInsertionOrder<NestedFunction>();
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (2)
52public readonly SetWithInsertionOrder<Symbol> DeclaredVariables = new SetWithInsertionOrder<Symbol>(); 175public readonly SetWithInsertionOrder<Symbol> CapturedVariables;
Microsoft.CodeAnalysis.VisualBasic (3)
Symbols\Source\SourceNamedTypeSymbol.vb (3)
1026interfaces As SetWithInsertionOrder(Of NamedTypeSymbol), 1150basesInOtherPartials As SetWithInsertionOrder(Of NamedTypeSymbol), 1207basesInOtherPartials As SetWithInsertionOrder(Of NamedTypeSymbol),