2 writes to LocalState
ILLink.RoslynAnalyzer (2)
DataFlow\LocalStateAndContextLattice.cs (2)
20
LocalState
= localState;
53
LocalState
= LocalStateLattice.Meet(left.LocalState, right.LocalState),
10 references to LocalState
ILLink.RoslynAnalyzer (10)
DataFlow\LocalDataFlowState.cs (2)
29
current.
LocalState
.Set(key, value);
35
public TValue Get(LocalKey key) => current.
LocalState
.Get(key);
DataFlow\LocalDataFlowVisitor.cs (3)
423
var capturedReferences = state.Current.
LocalState
.CapturedReferences.Get(flowCaptureReference.Id);
550
currentState.
LocalState
.CapturedReferences.Set(operation.Id, capturedRef);
564
var capturedReferences = state.Current.
LocalState
.CapturedReferences.Get(captureRef.Id);
DataFlow\LocalStateAndContextLattice.cs (5)
25
LocalState
.Equals(other.
LocalState
) && Context.Equals(other.Context);
28
public override int GetHashCode() => HashUtils.Combine(
LocalState
, Context);
53
LocalState = LocalStateLattice.Meet(left.
LocalState
, right.
LocalState
),