2 writes to LocalState
ILLink.RoslynAnalyzer (2)
DataFlow\LocalStateAndContextLattice.cs (2)
20
LocalState
= localState;
52
LocalState
= LocalStateLattice.Meet (left.LocalState, right.LocalState),
10 references to LocalState
ILLink.RoslynAnalyzer (10)
DataFlow\LocalDataFlowState.cs (2)
28
current.
LocalState
.Set (key, value);
34
public TValue Get (LocalKey key) => current.
LocalState
.Get (key);
DataFlow\LocalDataFlowVisitor.cs (3)
399
var capturedReferences = state.Current.
LocalState
.CapturedReferences.Get (flowCaptureReference.Id);
518
currentState.
LocalState
.CapturedReferences.Set (operation.Id, capturedRef);
528
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);
52
LocalState = LocalStateLattice.Meet (left.
LocalState
, right.
LocalState
),