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