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