Callable.calls_instructions()
Returns an Instructions object for the call instructions of the function/modifier.
Example
from glider import *
def query():
functions = Functions().exec(100)
calls_instructions = []
for function in functions:
# List all call instructions in the given functions
for instruction in function.calls_instructions().exec():
calls_instructions.append(instruction)
return calls_instructionsExample output

Last updated