This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from adb85e913 [ARM64] XPC services are unsupported on device. new dbc9b76bb new api class: SBFile
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: include/lldb/API/LLDB.h | 3 +- include/lldb/API/SBDefines.h | 1 + include/lldb/API/SBError.h | 1 + include/lldb/API/SBFile.h | 38 ++++++ include/lldb/Host/File.h | 2 + .../TestDefaultConstructorForAPIObjects.py | 14 ++ .../test/python_api/file_handle/TestFileHandle.py | 150 +++++++++++++++++++++ scripts/Python/python-typemaps.swig | 43 +++++- scripts/interface/SBFile.i | 38 ++++++ scripts/lldb.swig | 2 + source/API/CMakeLists.txt | 1 + source/API/SBFile.cpp | 113 ++++++++++++++++ source/API/SBReproducer.cpp | 1 + source/Host/common/File.cpp | 25 +++- .../ScriptInterpreter/Python/PythonDataObjects.cpp | 19 +-- .../ScriptInterpreter/Python/PythonDataObjects.h | 2 - 16 files changed, 428 insertions(+), 25 deletions(-) create mode 100644 include/lldb/API/SBFile.h create mode 100644 scripts/interface/SBFile.i create mode 100644 source/API/SBFile.cpp