3 overrides of UnreachableState
Microsoft.CodeAnalysis.CSharp (3)
FlowAnalysis\ControlFlowPass.cs (1)
107protected override LocalState UnreachableState()
FlowAnalysis\DefiniteAssignment.cs (1)
1981protected override LocalState UnreachableState()
FlowAnalysis\NullableWalker.cs (1)
2922protected override LocalState UnreachableState()
13 references to UnreachableState
Microsoft.CodeAnalysis.CSharp (13)
FlowAnalysis\AbstractFlowPass.cs (10)
117/// cref="UnreachableState"/>. Reachability and definite assignment are monotonic, and 521result = UnreachableState(); 546this.State = UnreachableState(); 636SetConditionalState(this.State, UnreachableState()); 641SetConditionalState(UnreachableState(), this.State); 964SetConditionalState(UnreachableState(), this.State); 969SetConditionalState(this.State, UnreachableState()); 1677var unreachable = UnreachableState(); 2860breakState = UnreachableState(); 3480SetState(UnreachableState());
FlowAnalysis\AbstractFlowPass_Switch.cs (3)
73TLocalState afterSwitchState = UnreachableState(); 122SetState(UnreachableState()); 159var endState = UnreachableState();