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)
3020var parameterDefaultsNotAssignedState = State.Clone(); 3145var joinedState = this.StateWhenTrue.Clone(); 3396localFunctionState.StartingState = state.Clone(); 5556var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 6137var leftState = this.State.Clone(); 6358var savedState = this.State.Clone(); 8470var originalWhenFalse = StateWhenFalse.Clone(); 8476var newWhenTrue = State.Clone(); 9385var savedState = this.State.Clone(); 11143var stateForLambda = this.State.Clone(); 11169initialState.HasValue ? initialState.Value : State.Clone(), 13033var rightState = State.Clone(); 13854self = other.Clone(); 13871self = other.Clone(); 13905return conditionalState.State.Clone(); 13908var state = conditionalState.StateWhenTrue.Clone(); 14233var container = _container is null ? null : new Boxed(_container.Value.Clone()); 14361: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())