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