Implemented interface member:
method
Clone
Microsoft.CodeAnalysis.CSharp.AbstractFlowPass<TLocalState, TLocalFunctionState>.ILocalState.Clone()
22 references to Clone
Microsoft.CodeAnalysis.CSharp (22)
FlowAnalysis\NullableWalker.cs (19)
2806var parameterDefaultsNotAssignedState = State.Clone(); 2931var joinedState = this.StateWhenTrue.Clone(); 3182localFunctionState.StartingState = state.Clone(); 5027var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 5551var leftState = this.State.Clone(); 5769var savedState = this.State.Clone(); 7607var originalWhenFalse = StateWhenFalse.Clone(); 7613var newWhenTrue = State.Clone(); 8406var savedState = this.State.Clone(); 9851var stateForLambda = this.State.Clone(); 9877initialState.HasValue ? initialState.Value : State.Clone(), 12131self = other.Clone(); 12148self = other.Clone(); 12182return conditionalState.State.Clone(); 12185var state = conditionalState.StateWhenTrue.Clone(); 12510var container = _container is null ? null : new Boxed(_container.Value.Clone()); 12638: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
346StateWhenTrue = stateWhenTrue.Clone(); 347StateWhenFalse = stateWhenFalse.Clone(); 356State = state.Clone();