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)
2869var parameterDefaultsNotAssignedState = State.Clone(); 2994var joinedState = this.StateWhenTrue.Clone(); 3245localFunctionState.StartingState = state.Clone(); 5093var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 5617var leftState = this.State.Clone(); 5835var savedState = this.State.Clone(); 7679var originalWhenFalse = StateWhenFalse.Clone(); 7685var newWhenTrue = State.Clone(); 8478var savedState = this.State.Clone(); 9923var stateForLambda = this.State.Clone(); 9949initialState.HasValue ? initialState.Value : State.Clone(), 12203self = other.Clone(); 12220self = other.Clone(); 12254return conditionalState.State.Clone(); 12257var state = conditionalState.StateWhenTrue.Clone(); 12582var container = _container is null ? null : new Boxed(_container.Value.Clone()); 12710: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
346StateWhenTrue = stateWhenTrue.Clone(); 347StateWhenFalse = stateWhenFalse.Clone(); 356State = state.Clone();