Instruction.extended_previous_instructions()
Returns the set of all instructions which could be executed before the current instruction
Last updated
Returns the set of all instructions which could be executed before the current instruction
Last updated
extended_previous_instructions() →
[
]
The difference between the extended_previous_instructions() function and is that this function works in an recursive (inter-procedural) manner and returns all instructions following the current instruction in the CFG (control-flow-graph).
The function is recursive (intra-procedural), and follows function calls; for the non-recursive (intra-procedural) variant of this function, use .
For example, in the function:
for the instruction:
the function will return instructions from _approve()
and _msgSender()
.