示例#1
0
文件: gef.py 项目: hazedic/gef-binja
 def _listMethods(self):
     """
     Class method listing (required for introspection API).
     """
     m = []
     for x in list_public_methods(self):
         if x.startswith("_"): continue
         if not is_exposed(getattr(self, x)): continue
         m.append(x)
     return m
 def _listMethods(self):
     return list_public_methods(self)