5 instantiations of SetWithInsertionOrder
Microsoft.CodeAnalysis (2)
InternalUtilities\OrderedMultiDictionary.cs (2)
28
? set : new
SetWithInsertionOrder
<V>();
44
set = new
SetWithInsertionOrder
<V>();
Microsoft.CodeAnalysis.CSharp (3)
Lowering\ClosureConversion\ClosureConversion.Analysis.cs (1)
313
var closures = new
SetWithInsertionOrder
<NestedFunction>();
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (2)
53
public readonly SetWithInsertionOrder<Symbol> DeclaredVariables = new
SetWithInsertionOrder
<Symbol>();
189
CapturedVariables = new
SetWithInsertionOrder
<Symbol>();
12 references to SetWithInsertionOrder
Microsoft.CodeAnalysis (8)
InternalUtilities\OrderedMultiDictionary.cs (8)
11
internal sealed class OrderedMultiDictionary<K, V> : IEnumerable<KeyValuePair<K,
SetWithInsertionOrder
<V>>>
14
private readonly Dictionary<K,
SetWithInsertionOrder
<V>> _dictionary;
22
public
SetWithInsertionOrder
<V> this[K k]
26
SetWithInsertionOrder
<V>? set;
34
_dictionary = new Dictionary<K,
SetWithInsertionOrder
<V>>();
40
SetWithInsertionOrder
<V>? set;
60
public IEnumerator<KeyValuePair<K,
SetWithInsertionOrder
<V>>> GetEnumerator()
64
yield return new KeyValuePair<K,
SetWithInsertionOrder
<V>>(
Microsoft.CodeAnalysis.CSharp (4)
Lowering\ClosureConversion\ClosureConversion.Analysis.cs (2)
292
var
variablesInEnvironment = scope.DeclaredVariables;
313
var
closures = new SetWithInsertionOrder<NestedFunction>();
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (2)
53
public readonly
SetWithInsertionOrder
<Symbol> DeclaredVariables = new SetWithInsertionOrder<Symbol>();
177
public readonly
SetWithInsertionOrder
<Symbol> CapturedVariables;