2 instantiations of DictionaryLattice
ILLink.RoslynAnalyzer (2)
DataFlow\LocalStateLattice.cs (2)
90Lattice = new DictionaryLattice<LocalKey, TValue, TValueLattice>(valueLattice); 91CapturedReferenceLattice = new DictionaryLattice<CaptureId, ValueSet<CapturedReferenceValue>, ValueSetLattice<CapturedReferenceValue>>(default(ValueSetLattice<CapturedReferenceValue>));
5 references to DictionaryLattice
ILLink.RoslynAnalyzer (5)
DataFlow\InterproceduralState.cs (2)
94public readonly DictionaryLattice<LocalKey, Maybe<TValue>, MaybeLattice<TValue, TValueLattice>> HoistedLocalLattice; 98DictionaryLattice<LocalKey, Maybe<TValue>, MaybeLattice<TValue, TValueLattice>> hoistedLocalLattice
DataFlow\LocalDataFlowAnalysis.cs (1)
69DictionaryLattice<LocalKey, Maybe<TValue>, MaybeLattice<TValue, TLattice>> hoistedLocalLattice = default;
DataFlow\LocalStateLattice.cs (2)
85public readonly DictionaryLattice<LocalKey, TValue, TValueLattice> Lattice; 86public readonly DictionaryLattice<CaptureId, ValueSet<CapturedReferenceValue>, ValueSetLattice<CapturedReferenceValue>> CapturedReferenceLattice;