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)
2963var parameterDefaultsNotAssignedState = State.Clone(); 3088var joinedState = this.StateWhenTrue.Clone(); 3340localFunctionState.StartingState = state.Clone(); 5244var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 5825var leftState = this.State.Clone(); 6044var savedState = this.State.Clone(); 8063var originalWhenFalse = StateWhenFalse.Clone(); 8069var newWhenTrue = State.Clone(); 8901var savedState = this.State.Clone(); 10358var stateForLambda = this.State.Clone(); 10384initialState.HasValue ? initialState.Value : State.Clone(), 12158var rightState = State.Clone(); 12927self = other.Clone(); 12944self = other.Clone(); 12978return conditionalState.State.Clone(); 12981var state = conditionalState.StateWhenTrue.Clone(); 13306var container = _container is null ? null : new Boxed(_container.Value.Clone()); 13434: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
346StateWhenTrue = stateWhenTrue.Clone(); 347StateWhenFalse = stateWhenFalse.Clone(); 356State = state.Clone();