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)
3034var parameterDefaultsNotAssignedState = State.Clone(); 3159var joinedState = this.StateWhenTrue.Clone(); 3410localFunctionState.StartingState = state.Clone(); 5570var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 6151var leftState = this.State.Clone(); 6372var savedState = this.State.Clone(); 8484var originalWhenFalse = StateWhenFalse.Clone(); 8490var newWhenTrue = State.Clone(); 9399var savedState = this.State.Clone(); 11153var stateForLambda = this.State.Clone(); 11179initialState.HasValue ? initialState.Value : State.Clone(), 13043var rightState = State.Clone(); 13864self = other.Clone(); 13881self = other.Clone(); 13915return conditionalState.State.Clone(); 13918var state = conditionalState.StateWhenTrue.Clone(); 14243var container = _container is null ? null : new Boxed(_container.Value.Clone()); 14371: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
348StateWhenTrue = stateWhenTrue.Clone(); 349StateWhenFalse = stateWhenFalse.Clone(); 358State = state.Clone();