Represents an edge in a Control Flow Graph (CFG), connecting two basic blocks.
Each edge signifies a potential flow of control from one statement to another.
Param: src
The index of the source block from which the control flow originates.
Param: dst
The index of the destination block to which the control flow goes.
Represents an edge in a Control Flow Graph (CFG), connecting two basic blocks. Each edge signifies a potential flow of control from one statement to another.
Param: src
The index of the source block from which the control flow originates.
Param: dst
The index of the destination block to which the control flow goes.