1 write to Dictionary
ILLink.RoslynAnalyzer (1)
DataFlow\LocalStateLattice.cs (1)
56Dictionary = dictionary;
7 references to Dictionary
ILLink.RoslynAnalyzer (7)
DataFlow\LocalStateLattice.cs (7)
65public bool Equals(LocalState<TValue> other) => Dictionary.Equals(other.Dictionary); 70public TValue Get(LocalKey key) => Dictionary.Get(key); 75public void Set(LocalKey key, TValue value) => Dictionary.Set(key, value); 77public override string ToString() => Dictionary.ToString(); 99var dictionary = Lattice.Meet(left.Dictionary, right.Dictionary);