Added documentation for many of our python properties and also made the property help show up by declaring the properties correctly. We previosly declared properties into a local "x" variable, what I didn't realize is that the help will use this as the property name for the help output.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@159468 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/interface/SBSymbolContext.i b/scripts/Python/interface/SBSymbolContext.i
index 4bf7fe3..fa40584 100644
--- a/scripts/Python/interface/SBSymbolContext.i
+++ b/scripts/Python/interface/SBSymbolContext.i
@@ -84,27 +84,27 @@
     %pythoncode %{
         __swig_getmethods__["module"] = GetModule
         __swig_setmethods__["module"] = SetModule
-        if _newclass: x = property(GetModule, SetModule)
+        if _newclass: module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setting of the module (lldb.SBModule) in this symbol context.''')
 
         __swig_getmethods__["compile_unit"] = GetCompileUnit
         __swig_setmethods__["compile_unit"] = SetCompileUnit
-        if _newclass: x = property(GetCompileUnit, SetCompileUnit)
+        if _newclass: compile_unit = property(GetCompileUnit, SetCompileUnit, doc='''A read/write property that allows the getting/setting of the compile unit (lldb.SBCompileUnit) in this symbol context.''')
 
         __swig_getmethods__["function"] = GetFunction
         __swig_setmethods__["function"] = SetFunction
-        if _newclass: x = property(GetFunction, SetFunction)
+        if _newclass: function = property(GetFunction, SetFunction, doc='''A read/write property that allows the getting/setting of the function (lldb.SBFunction) in this symbol context.''')
 
         __swig_getmethods__["block"] = GetBlock
         __swig_setmethods__["block"] = SetBlock
-        if _newclass: x = property(GetBlock, SetBlock)
+        if _newclass: block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting of the block (lldb.SBBlock) in this symbol context.''')
             
         __swig_getmethods__["symbol"] = GetSymbol
         __swig_setmethods__["symbol"] = SetSymbol
-        if _newclass: x = property(GetSymbol, SetSymbol)
+        if _newclass: symbol = property(GetSymbol, SetSymbol, doc='''A read/write property that allows the getting/setting of the symbol (lldb.SBSymbol) in this symbol context.''')
 
         __swig_getmethods__["line_entry"] = GetLineEntry
         __swig_setmethods__["line_entry"] = SetLineEntry
-        if _newclass: x = property(GetLineEntry, SetLineEntry)
+        if _newclass: line_entry = property(GetLineEntry, SetLineEntry, doc='''A read/write property that allows the getting/setting of the line entry (lldb.SBLineEntry) in this symbol context.''')
     %}
 
 };