This patch should fix the build failures introduced by f0731d5b61.
This removes the use of the `STRING_EXTENSION_OUTSIDE` swig macro in SB
classes that don't implement a `GetDescription` method.
Signed-off-by: Med Ismail Bennani <ismail@bennani.ma>
27 lines
651 B
OpenEdge ABL
27 lines
651 B
OpenEdge ABL
%extend lldb::SBScriptObject {
|
|
#ifdef SWIGPYTHON
|
|
%pythoncode %{
|
|
def __eq__(self, other):
|
|
return not self.__ne__(other)
|
|
|
|
def __int__(self):
|
|
pass
|
|
|
|
def __hex__(self):
|
|
pass
|
|
|
|
def __oct__(self):
|
|
pass
|
|
|
|
def __len__(self):
|
|
pass
|
|
|
|
def __iter__(self):
|
|
pass
|
|
|
|
ptr = property(GetPointer, None, doc='''A read only property that returns the underlying script object.''')
|
|
lang = property(GetLanguage, None, doc='''A read only property that returns the script language associated with with this script object.''')
|
|
%}
|
|
#endif
|
|
}
|