Returns the list of all points following the current point in the current data flow graph.
forward_df() → APISet[Point]
forward_df() →
APISet
[
Point
]
from glider import * def query(): instructions = Instructions().exec(1, 611) for instruction in instructions: components = instruction.get_components() for component in components: if isinstance(component, VarValue): points = component.forward_df() print(points) for forward_df in points: print(forward_df.source_code()) return instructions
Last updated 2 months ago