[Lldb-commits] [lldb] 28b300d - [lldb] Update ScriptInterpreterLua::LoadScriptingModule

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 1 22:13:31 PDT 2025


Author: Jonas Devlieghere
Date: 2025-04-01T22:13:26-07:00
New Revision: 28b300d546948baf4396c3467507dea8b9e34881

URL: https://github.com/llvm/llvm-project/commit/28b300d546948baf4396c3467507dea8b9e34881
DIFF: https://github.com/llvm/llvm-project/commit/28b300d546948baf4396c3467507dea8b9e34881.diff

LOG: [lldb] Update ScriptInterpreterLua::LoadScriptingModule

Update the ScriptInterpreterLua::LoadScriptingModule signature after the
TargetSP argument was added in #133290.

Added: 
    

Modified: 
    lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
    lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h

Removed: 
    


################################################################################
diff  --git a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
index 191863ae25d7b..0a0f19f7d09b9 100644
--- a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
+++ b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
@@ -228,7 +228,7 @@ void ScriptInterpreterLua::ExecuteInterpreterLoop() {
 bool ScriptInterpreterLua::LoadScriptingModule(
     const char *filename, const LoadScriptOptions &options,
     lldb_private::Status &error, StructuredData::ObjectSP *module_sp,
-    FileSpec extra_search_dir) {
+    FileSpec extra_search_dir, lldb::TargetSP loaded_into_target_sp) {
 
   if (llvm::Error e = m_lua->LoadModule(filename)) {
     error = Status::FromErrorStringWithFormatv(

diff  --git a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h
index ca14e189acd84..7bfbac0ef9d00 100644
--- a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h
+++ b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h
@@ -47,7 +47,8 @@ class ScriptInterpreterLua : public ScriptInterpreter {
                            const LoadScriptOptions &options,
                            lldb_private::Status &error,
                            StructuredData::ObjectSP *module_sp = nullptr,
-                           FileSpec extra_search_dir = {}) override;
+                           FileSpec extra_search_dir = {},
+                           lldb::TargetSP loaded_into_target_sp = {}) override;
 
   StructuredData::DictionarySP GetInterpreterInfo() override;
 


        


More information about the lldb-commits mailing list