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)
2989var parameterDefaultsNotAssignedState = State.Clone(); 3114var joinedState = this.StateWhenTrue.Clone(); 3366localFunctionState.StartingState = state.Clone(); 5306var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 5887var leftState = this.State.Clone(); 6106var savedState = this.State.Clone(); 8162var originalWhenFalse = StateWhenFalse.Clone(); 8168var newWhenTrue = State.Clone(); 9047var savedState = this.State.Clone(); 10512var stateForLambda = this.State.Clone(); 10538initialState.HasValue ? initialState.Value : State.Clone(), 12326var rightState = State.Clone(); 13095self = other.Clone(); 13112self = other.Clone(); 13146return conditionalState.State.Clone(); 13149var state = conditionalState.StateWhenTrue.Clone(); 13474var container = _container is null ? null : new Boxed(_container.Value.Clone()); 13602: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
346StateWhenTrue = stateWhenTrue.Clone(); 347StateWhenFalse = stateWhenFalse.Clone(); 356State = state.Clone();