1STRING_EXTENSION_OUTSIDE(SBDeclaration)
2
3%extend lldb::SBDeclaration {
4#ifdef SWIGPYTHON
5        %pythoncode %{
6            # operator== is a free function, which swig does not handle, so we inject
7            # our own equality operator here
8            def __eq__(self, other):
9                return not self.__ne__(other)
10
11            file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
12            line = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
13            column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
14        %}
15#endif
16}
17