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)
2963var parameterDefaultsNotAssignedState = State.Clone(); 3088var joinedState = this.StateWhenTrue.Clone(); 3340localFunctionState.StartingState = state.Clone(); 5190var (stateWhenTrue, stateWhenFalse) = (StateWhenTrue.Clone(), StateWhenFalse.Clone()); 5709var leftState = this.State.Clone(); 5928var savedState = this.State.Clone(); 7895var originalWhenFalse = StateWhenFalse.Clone(); 7901var newWhenTrue = State.Clone(); 8702var savedState = this.State.Clone(); 10159var stateForLambda = this.State.Clone(); 10185initialState.HasValue ? initialState.Value : State.Clone(), 12490self = other.Clone(); 12507self = other.Clone(); 12541return conditionalState.State.Clone(); 12544var state = conditionalState.StateWhenTrue.Clone(); 12869var container = _container is null ? null : new Boxed(_container.Value.Clone()); 12997: base(stateFromBottom: unreachableState.Clone(), stateFromTop: unreachableState.Clone())
FlowAnalysis\NullableWalker_Patterns.cs (3)
346StateWhenTrue = stateWhenTrue.Clone(); 347StateWhenFalse = stateWhenFalse.Clone(); 356State = state.Clone();