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)
2867var parameterDefaultsNotAssignedState = State.Clone(); 2992var joinedState = this.StateWhenTrue.Clone(); 3243localFunctionState.StartingState = state.Clone(); 5088var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 5612var leftState = this.State.Clone(); 5830var savedState = this.State.Clone(); 7668var originalWhenFalse = StateWhenFalse.Clone(); 7674var newWhenTrue = State.Clone(); 8467var savedState = this.State.Clone(); 9912var stateForLambda = this.State.Clone(); 9938initialState.HasValue ? initialState.Value : State.Clone(), 12192self = other.Clone(); 12209self = other.Clone(); 12243return conditionalState.State.Clone(); 12246var state = conditionalState.StateWhenTrue.Clone(); 12571var container = _container is null ? null : new Boxed(_container.Value.Clone()); 12699: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
346StateWhenTrue = stateWhenTrue.Clone(); 347StateWhenFalse = stateWhenFalse.Clone(); 356State = state.Clone();