Esempio n. 1
0
 def __init__(self):
     Visitor.__init__(self)
     self.edge_types = ["ast", "cfg", "in", "data"]
     self.G = nx.MultiDiGraph()
Esempio n. 2
0
 def __init__(self):
     Visitor.__init__(self)
     self.tokens = []
Esempio n. 3
0
 def __init__(self):
     Visitor.__init__(self)
     self.edge_types = ["ast"]
     self.G = nx.MultiDiGraph()
Esempio n. 4
0
 def __init__(self):
     Visitor.__init__(self)
     self.stmts = []
Esempio n. 5
0
 def __init__(self):
     Visitor.__init__(self)
     self.instructions = []
Esempio n. 6
0
 def __init__(self):
     Visitor.__init__(self)
     self.S = []
Esempio n. 7
0
 def __init__(self):
     Visitor.__init__(self)
     self.edge_types = []
     self.G = nx.DiGraph()
Esempio n. 8
0
 def __init__(self):
     Visitor.__init__(self)
     self.edge_types = ["cfg", "data", "mem", "call"]
     self.G = nx.MultiDiGraph()
     self.functions = {}