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)
2988var parameterDefaultsNotAssignedState = State.Clone(); 3113var joinedState = this.StateWhenTrue.Clone(); 3364localFunctionState.StartingState = state.Clone(); 5460var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 6041var leftState = this.State.Clone(); 6260var savedState = this.State.Clone(); 8315var originalWhenFalse = StateWhenFalse.Clone(); 8321var newWhenTrue = State.Clone(); 9211var savedState = this.State.Clone(); 10675var stateForLambda = this.State.Clone(); 10701initialState.HasValue ? initialState.Value : State.Clone(), 12504var rightState = State.Clone(); 13275self = other.Clone(); 13292self = other.Clone(); 13326return conditionalState.State.Clone(); 13329var state = conditionalState.StateWhenTrue.Clone(); 13654var container = _container is null ? null : new Boxed(_container.Value.Clone()); 13782: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
346StateWhenTrue = stateWhenTrue.Clone(); 347StateWhenFalse = stateWhenFalse.Clone(); 356State = state.Clone();