diff options
Diffstat (limited to 'lldb/scripts/Python/interface/SBLineEntry.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBLineEntry.i | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/scripts/Python/interface/SBLineEntry.i b/lldb/scripts/Python/interface/SBLineEntry.i index 61d6a64e9ca..0fe4e919191 100644 --- a/lldb/scripts/Python/interface/SBLineEntry.i +++ b/lldb/scripts/Python/interface/SBLineEntry.i @@ -79,19 +79,19 @@ public: %pythoncode %{ __swig_getmethods__["file"] = GetFileSpec - if _newclass: x = property(GetFileSpec, None) + if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''') __swig_getmethods__["line"] = GetLine - if _newclass: x = property(GetLine, None) + if _newclass: ling = 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.''') __swig_getmethods__["column"] = GetColumn - if _newclass: x = property(GetColumn, None) + if _newclass: 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.''') __swig_getmethods__["addr"] = GetStartAddress - if _newclass: x = property(GetStartAddress, None) + if _newclass: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this line entry.''') __swig_getmethods__["end_addr"] = GetEndAddress - if _newclass: x = property(GetEndAddress, None) + if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this line entry.''') %} |