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)
2769var parameterDefaultsNotAssignedState = State.Clone(); 2894var joinedState = this.StateWhenTrue.Clone(); 3145localFunctionState.StartingState = state.Clone(); 4911var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 5435var leftState = this.State.Clone(); 5653var savedState = this.State.Clone(); 7453var originalWhenFalse = StateWhenFalse.Clone(); 7459var newWhenTrue = State.Clone(); 8251var savedState = this.State.Clone(); 9685var stateForLambda = this.State.Clone(); 9711initialState.HasValue ? initialState.Value : State.Clone(), 11947self = other.Clone(); 11964self = other.Clone(); 11998return conditionalState.State.Clone(); 12001var state = conditionalState.StateWhenTrue.Clone(); 12326var container = _container is null ? null : new Boxed(_container.Value.Clone()); 12454: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
308StateWhenTrue = stateWhenTrue.Clone(); 309StateWhenFalse = stateWhenFalse.Clone(); 318State = state.Clone();