[Lldb-commits] [lldb] [lldb] Check for abstract methods implementation in Scripted Plugin Objects (PR #71260)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Fri Nov 3 18:08:52 PDT 2023
================
@@ -0,0 +1,19 @@
+import os
+
+
+class MissingMethodsScriptedProcess:
+ def __init__(self, exe_ctx, args):
+ pass
+
+
+def __lldb_init_module(debugger, dict):
+ if not "SKIP_SCRIPTED_PROCESS_LAUNCH" in os.environ:
----------------
bulbazord wrote:
Instead of doing this through an environment variable, is there a way we can do this with the `dict` or as a `debugger` setting?
https://github.com/llvm/llvm-project/pull/71260
More information about the lldb-commits
mailing list