3 overrides of UnreachableState
Microsoft.CodeAnalysis.CSharp (3)
FlowAnalysis\ControlFlowPass.cs (1)
106protected override LocalState UnreachableState()
FlowAnalysis\DefiniteAssignment.cs (1)
1934protected override LocalState UnreachableState()
FlowAnalysis\NullableWalker.cs (1)
2993protected override LocalState UnreachableState()
13 references to UnreachableState
Microsoft.CodeAnalysis.CSharp (13)
FlowAnalysis\AbstractFlowPass_Switch.cs (3)
73TLocalState afterSwitchState = UnreachableState(); 122SetState(UnreachableState()); 159var endState = UnreachableState();
FlowAnalysis\AbstractFlowPass.cs (10)
117/// cref="UnreachableState"/>. Reachability and definite assignment are monotonic, and 522result = UnreachableState(); 547this.State = UnreachableState(); 637SetConditionalState(this.State, UnreachableState()); 642SetConditionalState(UnreachableState(), this.State); 965SetConditionalState(UnreachableState(), this.State); 970SetConditionalState(this.State, UnreachableState()); 1677var unreachable = UnreachableState(); 2883breakState = UnreachableState(); 3503SetState(UnreachableState());