Module ControlFlow::BasicBlocks
Provides different types of basic blocks.
Import path
import semmle.code.csharp.controlflow.ControlFlowGraphAliases
| AnnotatedExitBlock | An annotated exit basic block, that is, a basic block that contains an annotated exit node. |
| ConditionBlock | A basic block that terminates in a condition, splitting the subsequent control flow. |
| EntryBlock | An entry basic block, that is, a basic block whose first node is the entry node of a callable. |
| ExitBlock | An exit basic block, that is, a basic block whose last node is the exit node of a callable. |
| JoinBlock | A basic block with more than one predecessor. |
| JoinBlockPredecessor | A basic block that is an immediate predecessor of a join block. |