This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 6f57bf9c6 Fix lldb's macosx/heap.py cstr command. new d5a300477 [NativePDB] Decouple AST reconstruction from lldb Symbol creation.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: .../NativePDB/function-types-classes.cpp | 16 +- source/Plugins/SymbolFile/NativePDB/CMakeLists.txt | 1 + .../Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp | 865 +++++++++++++++++++++ .../Plugins/SymbolFile/NativePDB/PdbAstBuilder.h | 129 +++ source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp | 188 +++++ source/Plugins/SymbolFile/NativePDB/PdbUtil.h | 23 +- .../SymbolFile/NativePDB/SymbolFileNativePDB.cpp | 820 +++---------------- .../SymbolFile/NativePDB/SymbolFileNativePDB.h | 57 +- .../SymbolFile/NativePDB/UdtRecordCompleter.cpp | 68 +- .../SymbolFile/NativePDB/UdtRecordCompleter.h | 21 +- 10 files changed, 1374 insertions(+), 814 deletions(-) create mode 100644 source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp create mode 100644 source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h