[Lldb-commits] [lldb] [lldb] Implement a formatter bytecode interpreter in C++ (PR #114333)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 31 13:14:08 PDT 2024


================
@@ -1537,6 +1538,154 @@ static void LoadScriptingResourceForModule(const ModuleSP &module_sp,
                                                   feedback_stream.GetData());
 }
 
+static void ForEachFormatterInModule(
----------------
JDevlieghere wrote:

Target seems like a weird place for this code to live. I understand that's where `LoadScriptingResourceForModule` currently resides, but that function is pretty basic. I think we've reached the threshold of having to move `LoadScriptingResourceForModule`, `LoadTypeSummariesForModule` and `LoadFormattersForModule` into a separate file. 

https://github.com/llvm/llvm-project/pull/114333


More information about the lldb-commits mailing list