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)
3025var parameterDefaultsNotAssignedState = State.Clone(); 3150var joinedState = this.StateWhenTrue.Clone(); 3401localFunctionState.StartingState = state.Clone(); 5572var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 6153var leftState = this.State.Clone(); 6374var savedState = this.State.Clone(); 8457var originalWhenFalse = StateWhenFalse.Clone(); 8463var newWhenTrue = State.Clone(); 9372var savedState = this.State.Clone(); 11124var stateForLambda = this.State.Clone(); 11150initialState.HasValue ? initialState.Value : State.Clone(), 12975var rightState = State.Clone(); 13796self = other.Clone(); 13813self = other.Clone(); 13847return conditionalState.State.Clone(); 13850var state = conditionalState.StateWhenTrue.Clone(); 14175var container = _container is null ? null : new Boxed(_container.Value.Clone()); 14303: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
348StateWhenTrue = stateWhenTrue.Clone(); 349StateWhenFalse = stateWhenFalse.Clone(); 358State = state.Clone();