diff options
Diffstat (limited to 'lldb/scripts/Python/interface/SBSymbolContextList.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBSymbolContextList.i | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lldb/scripts/Python/interface/SBSymbolContextList.i b/lldb/scripts/Python/interface/SBSymbolContextList.i index 08dcf1e2cf5..25e889499c8 100644 --- a/lldb/scripts/Python/interface/SBSymbolContextList.i +++ b/lldb/scripts/Python/interface/SBSymbolContextList.i @@ -117,22 +117,22 @@ public: a.append(obj) return a __swig_getmethods__["modules"] = get_module_array - if _newclass: x = property(get_module_array, None) + if _newclass: modules = property(get_module_array, None, doc='''Returns a list() of lldb.SBModule objects, one for each module in each SBSymbolContext object in this list.''') __swig_getmethods__["compile_units"] = get_compile_unit_array - if _newclass: x = property(get_compile_unit_array, None) + if _newclass: compile_units = property(get_compile_unit_array, None, doc='''Returns a list() of lldb.SBCompileUnit objects, one for each compile unit in each SBSymbolContext object in this list.''') __swig_getmethods__["functions"] = get_function_array - if _newclass: x = property(get_function_array, None) + if _newclass: functions = property(get_function_array, None, doc='''Returns a list() of lldb.SBFunction objects, one for each function in each SBSymbolContext object in this list.''') __swig_getmethods__["blocks"] = get_block_array - if _newclass: x = property(get_block_array, None) + if _newclass: blocks = property(get_block_array, None, doc='''Returns a list() of lldb.SBBlock objects, one for each block in each SBSymbolContext object in this list.''') __swig_getmethods__["line_entries"] = get_line_entry_array - if _newclass: x = property(get_line_entry_array, None) + if _newclass: line_entries = property(get_line_entry_array, None, doc='''Returns a list() of lldb.SBLineEntry objects, one for each line entry in each SBSymbolContext object in this list.''') __swig_getmethods__["symbols"] = get_symbol_array - if _newclass: x = property(get_symbol_array, None) + if _newclass: symbols = property(get_symbol_array, None, doc='''Returns a list() of lldb.SBSymbol objects, one for each symbol in each SBSymbolContext object in this list.''') %} }; |