Instruction.next_instruction()
Returns a list of immediate following instructions in the control flow graph.
next_instruction() → List[
Instruction
]
The difference between the next_instruction() function and next_instructions() is that this function will return a list of instructions that are immediately following the current instruction in the CFG (control-flow-graph).
The function is intra-procedural.
For example, in the function:
for the instruction:
the function will return the instruction:
Query Example
Output
Last updated