You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Add a method to get source in ClassItem
def display_source(self) :
self.__CM.decompiler_ob.display_all( self.get_name() )
def get_source(self)
self.__CM.decompiler_ob.get_all(self.get_name() )
2. Add a method to get source in EncodedMethod
def source(self) :
return self.__CM.decompiler_ob.get_source( self.get_class_name(), self.get_name() )
def display_source(self) :
self.__CM.decompiler_ob.display_source( self.get_class_name(), self.get_name() )
3. Remove get_descriptor() because unused in source(self, class_name,
method_name) of dvm.py
4. rename source in display_source or show_source in dvm.py
Original issue reported on code.google.com by liadalex82@gmail.com on 18 Apr 2012 at 1:58
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
liadalex82@gmail.com
on 18 Apr 2012 at 1:58The text was updated successfully, but these errors were encountered: