3 overrides of UnreachableState
Microsoft.CodeAnalysis.CSharp (3)
FlowAnalysis\ControlFlowPass.cs (1)
107protected override LocalState UnreachableState()
FlowAnalysis\DefiniteAssignment.cs (1)
1843protected override LocalState UnreachableState()
FlowAnalysis\NullableWalker.cs (1)
2684protected override LocalState UnreachableState()
13 references to UnreachableState
Microsoft.CodeAnalysis.CSharp (13)
FlowAnalysis\AbstractFlowPass.cs (10)
118/// cref="UnreachableState"/>. Reachability and definite assignment are monotonic, and 523result = UnreachableState(); 548this.State = UnreachableState(); 630SetConditionalState(this.State, UnreachableState()); 635SetConditionalState(UnreachableState(), this.State); 958SetConditionalState(UnreachableState(), this.State); 963SetConditionalState(this.State, UnreachableState()); 1573var unreachable = UnreachableState(); 2658breakState = UnreachableState(); 3273SetState(UnreachableState());
FlowAnalysis\AbstractFlowPass_Switch.cs (3)
73TLocalState afterSwitchState = UnreachableState(); 122SetState(UnreachableState()); 159var endState = UnreachableState();