diff options
author | jimingham <jingham@apple.com> | 2025-07-28 15:11:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-28 15:11:22 -0700 |
commit | 4c8e79f81582a757ed4333f8ff2ad4da18bab39a (patch) | |
tree | 80f46311f5b7d23c6b06f88f4269b41be7fd520e /lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | |
parent | 6bcff9eb13f226b89bb6ebc80bb0f3e80b7868f7 (diff) | |
download | llvm-4c8e79f81582a757ed4333f8ff2ad4da18bab39a.zip llvm-4c8e79f81582a757ed4333f8ff2ad4da18bab39a.tar.gz llvm-4c8e79f81582a757ed4333f8ff2ad4da18bab39a.tar.bz2 |
Switch the ScriptedBreakpointResolver over to the ScriptedInterface form (#150720)
This is NFC, I'm modernizing the interface before I add to it in a
subsequent commit.
Diffstat (limited to 'lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp')
-rw-r--r-- | lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp index f7b5e3a..fbb005b 100644 --- a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp +++ b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp @@ -80,20 +80,6 @@ lldb_private::python::SWIGBridge::LLDBSwigPythonCreateCommandObject( return python::PythonObject(); } -python::PythonObject lldb_private::python::SWIGBridge:: - LLDBSwigPythonCreateScriptedBreakpointResolver( - const char *python_class_name, const char *session_dictionary_name, - const StructuredDataImpl &args, const lldb::BreakpointSP &bkpt_sp) { - return python::PythonObject(); -} - -unsigned int -lldb_private::python::SWIGBridge::LLDBSwigPythonCallBreakpointResolver( - void *implementor, const char *method_name, - lldb_private::SymbolContext *sym_ctx) { - return 0; -} - size_t lldb_private::python::SWIGBridge::LLDBSwigPython_CalculateNumChildren( PyObject *implementor, uint32_t max) { return 0; @@ -144,6 +130,11 @@ lldb_private::python::LLDBSWIGPython_CastPyObjectToSBStream(PyObject *data) { return nullptr; } +void *lldb_private::python::LLDBSWIGPython_CastPyObjectToSBSymbolContext( + PyObject *data) { + return nullptr; +} + void * lldb_private::python::LLDBSWIGPython_CastPyObjectToSBValue(PyObject *data) { return nullptr; |