[Lldb-commits] [lldb] r222592 - Fix mispelled 'ling' Python property to be 'line' in
Jason Molenda
jmolenda at apple.com
Fri Nov 21 16:00:17 PST 2014
Author: jmolenda
Date: Fri Nov 21 18:00:17 2014
New Revision: 222592
URL: http://llvm.org/viewvc/llvm-project?rev=222592&view=rev
Log:
Fix mispelled 'ling' Python property to be 'line' in
SBLineEntry and SBDeclaration. Patch from Chris Willmore.
<rdar://problem/19054323>
Modified:
lldb/trunk/scripts/Python/interface/SBDeclaration.i
lldb/trunk/scripts/Python/interface/SBLineEntry.i
Modified: lldb/trunk/scripts/Python/interface/SBDeclaration.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/interface/SBDeclaration.i?rev=222592&r1=222591&r2=222592&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/interface/SBDeclaration.i (original)
+++ lldb/trunk/scripts/Python/interface/SBDeclaration.i Fri Nov 21 18:00:17 2014
@@ -57,7 +57,7 @@ namespace lldb {
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: 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.''')
+ if _newclass: 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.''')
__swig_getmethods__["column"] = GetColumn
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.''')
Modified: lldb/trunk/scripts/Python/interface/SBLineEntry.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/interface/SBLineEntry.i?rev=222592&r1=222591&r2=222592&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/interface/SBLineEntry.i (original)
+++ lldb/trunk/scripts/Python/interface/SBLineEntry.i Fri Nov 21 18:00:17 2014
@@ -88,7 +88,7 @@ public:
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: 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.''')
+ if _newclass: 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.''')
__swig_getmethods__["column"] = GetColumn
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.''')
More information about the lldb-commits
mailing list