5 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)
313var closures = new SetWithInsertionOrder<NestedFunction>();
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (2)
53public readonly SetWithInsertionOrder<Symbol> DeclaredVariables = new SetWithInsertionOrder<Symbol>(); 189CapturedVariables = new SetWithInsertionOrder<Symbol>();
12 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)
292var variablesInEnvironment = scope.DeclaredVariables; 313var closures = new SetWithInsertionOrder<NestedFunction>();
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (2)
53public readonly SetWithInsertionOrder<Symbol> DeclaredVariables = new SetWithInsertionOrder<Symbol>(); 177public readonly SetWithInsertionOrder<Symbol> CapturedVariables;