Returns metadata on all calls in the Instruction.
Last updated 29 days ago
get_callees() → Dict
from glider import * def query(): instructions = Instructions().exec(3,182) results = [] for inst in instructions: print(inst.get_callees()) return instructions