This reverts 3 commit: - f0731d5b61ba798e6d5a63a92d9228010e5a3b50. - 8e0a087571a31057bb98939e3ada73227bed83c7. - f2f5d6fb8d53bc4bd93a3d4e110134ed017b636f. This changes were introduced to silence the warnings that are printed when generating the lldb module documentation for the website but it changed the python bindings and causes test failures on the macos bot: https://green.lab.llvm.org/green/job/lldb-cmake/59438/ We will have to consider other options to silence these warnings.
9 lines
349 B
OpenEdge ABL
9 lines
349 B
OpenEdge ABL
%extend lldb::SBScriptObject {
|
|
#ifdef SWIGPYTHON
|
|
%pythoncode %{
|
|
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
|
|
}
|