Implemented interface member:
method
Clone
Microsoft.CodeAnalysis.CSharp.AbstractFlowPass<TLocalState, TLocalFunctionState>.ILocalState.Clone()
23 references to Clone
Microsoft.CodeAnalysis.CSharp (23)
FlowAnalysis\NullableWalker.cs (20)
2987var parameterDefaultsNotAssignedState = State.Clone(); 3112var joinedState = this.StateWhenTrue.Clone(); 3363localFunctionState.StartingState = state.Clone(); 5302var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 5883var leftState = this.State.Clone(); 6102var savedState = this.State.Clone(); 8158var originalWhenFalse = StateWhenFalse.Clone(); 8164var newWhenTrue = State.Clone(); 9043var savedState = this.State.Clone(); 10508var stateForLambda = this.State.Clone(); 10534initialState.HasValue ? initialState.Value : State.Clone(), 12320var rightState = State.Clone(); 13089self = other.Clone(); 13106self = other.Clone(); 13140return conditionalState.State.Clone(); 13143var state = conditionalState.StateWhenTrue.Clone(); 13468var container = _container is null ? null : new Boxed(_container.Value.Clone()); 13596: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
346StateWhenTrue = stateWhenTrue.Clone(); 347StateWhenFalse = stateWhenFalse.Clone(); 356State = state.Clone();