Returns the instructions which are reachable from the entry node
Last updated 4 months ago
get_reachable_instructions() → []
get_reachable_instructions() →
[
]
from glider import * def query(): functions = Functions().exec(1) for reachable_instruction in functions[0].get_reachable_instructions(): print(f"{reachable_instruction.source_code()}") return functions
APISet
Instruction