Implemented interface member:
method
Clone
Microsoft.CodeAnalysis.CSharp.AbstractFlowPass<TLocalState, TLocalFunctionState>.ILocalState.Clone()
23 references to Clone
Microsoft.CodeAnalysis.CSharp (23)
FlowAnalysis\NullableWalker_Patterns.cs (3)
349StateWhenTrue = stateWhenTrue.Clone(); 350StateWhenFalse = stateWhenFalse.Clone(); 359State = state.Clone();
FlowAnalysis\NullableWalker.cs (20)
3076var parameterDefaultsNotAssignedState = State.Clone(); 3201var joinedState = this.StateWhenTrue.Clone(); 3452localFunctionState.StartingState = state.Clone(); 5612var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 6209var leftState = this.State.Clone(); 6430var savedState = this.State.Clone(); 8542var originalWhenFalse = StateWhenFalse.Clone(); 8548var newWhenTrue = State.Clone(); 9457var savedState = this.State.Clone(); 11215var stateForLambda = this.State.Clone(); 11241initialState.HasValue ? initialState.Value : State.Clone(), 13121var rightState = State.Clone(); 13942self = other.Clone(); 13959self = other.Clone(); 13993return conditionalState.State.Clone(); 13996var state = conditionalState.StateWhenTrue.Clone(); 14321var container = _container is null ? null : new Boxed(_container.Value.Clone()); 14449: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())