Enum ControlFlowEdgeType
- Namespace
- Echo.ControlFlow
- Assembly
- Echo.ControlFlow.dll
Provides all possible edge types that are supported in a control flow graph.
public enum ControlFlowEdgeType
Fields
Abnormal = 4Indicates the edge is only traversed in abnormal circumstances, typically when an exception occurs.
Conditional = 3Indicates the edge is only traversed when a specific condition is met.
FallThrough = 1Indicates the edge is the default fallthrough edge of a node, and is traversed when no other edge is traversed.
None = 0Indicates the edge is not actually a real edge, but a new node was found at the target.
Unconditional = 2Indicates the edge is traversed as a result from an unconditional jump instruction.