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)
2969var parameterDefaultsNotAssignedState = State.Clone(); 3094var joinedState = this.StateWhenTrue.Clone(); 3346localFunctionState.StartingState = state.Clone(); 5251var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 5832var leftState = this.State.Clone(); 6051var savedState = this.State.Clone(); 8066var originalWhenFalse = StateWhenFalse.Clone(); 8072var newWhenTrue = State.Clone(); 8905var savedState = this.State.Clone(); 10370var stateForLambda = this.State.Clone(); 10396initialState.HasValue ? initialState.Value : State.Clone(), 12182var rightState = State.Clone(); 12951self = other.Clone(); 12968self = other.Clone(); 13002return conditionalState.State.Clone(); 13005var state = conditionalState.StateWhenTrue.Clone(); 13330var container = _container is null ? null : new Boxed(_container.Value.Clone()); 13458: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
346StateWhenTrue = stateWhenTrue.Clone(); 347StateWhenFalse = stateWhenFalse.Clone(); 356State = state.Clone();