2 instantiations of LocalState
ILLink.RoslynAnalyzer (2)
DataFlow\LocalStateLattice.cs (2)
163Top = new(Lattice.Top); 173return new LocalState<TValue>(dictionary, capturedProperties, capturedTargetValues);
11 references to LocalState
ILLink.RoslynAnalyzer (11)
DataFlow\LocalDataFlowAnalysis.cs (1)
48entryValue = new LocalStateAndContext<TValue, TContext>(default(LocalState<TValue>), initialContext);
DataFlow\LocalStateAndContextLattice.cs (2)
14public LocalState<TValue> LocalState; 17public LocalStateAndContext(LocalState<TValue> localState, TContext context)
DataFlow\LocalStateLattice.cs (8)
98public struct LocalState<TValue> : IEquatable<LocalState<TValue>> 129public bool Equals(LocalState<TValue> other) => 135=> obj is LocalState<TValue> inst && Equals(inst); 149public readonly struct LocalStateLattice<TValue, TValueLattice> : ILattice<LocalState<TValue>> 166public LocalState<TValue> Top { get; } 168public LocalState<TValue> Meet(LocalState<TValue> left, LocalState<TValue> right)