17 lines
758 B
OpenEdge ABL
17 lines
758 B
OpenEdge ABL
|
STRING_EXTENSION_OUTSIDE(SBError)
|
||
|
|
||
|
%extend lldb::SBError {
|
||
|
#ifdef SWIGPYTHON
|
||
|
%pythoncode %{
|
||
|
def __int__(self):
|
||
|
return self.GetError()
|
||
|
|
||
|
value = property(GetError, None, doc='''A read only property that returns the same result as GetError().''')
|
||
|
fail = property(Fail, None, doc='''A read only property that returns the same result as Fail().''')
|
||
|
success = property(Success, None, doc='''A read only property that returns the same result as Success().''')
|
||
|
description = property(GetCString, None, doc='''A read only property that returns the same result as GetCString().''')
|
||
|
type = property(GetType, None, doc='''A read only property that returns the same result as GetType().''')
|
||
|
%}
|
||
|
#endif
|
||
|
}
|