Files
clang-p2996/lldb/bindings/interface/SBScriptObjectExtensions.i
Med Ismail Bennani 8e0a087571 [lldb] Fix build failures introduced in f0731d5b61 (NFCI)
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>
2023-08-29 16:34:56 +01:00

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
}