Exemplo n.º 1
0
 def __init__(self, acode):
     Vertex.__init__(self, data=acode)
     self.name = self.data.name
     self.view = self.data.view
Exemplo n.º 2
0
 def __init__(self,acode):
     Vertex.__init__(self,data=acode)
     pre = 'blck_' if acode._is_block else 'func_'
     self.name = '{}{}'.format(pre,str(self.data.address))
     self._map = None
     self.misc = defaultdict(_code_misc_default)
Exemplo n.º 3
0
 def __init__(self, acode):
     Vertex.__init__(self, data=acode)