[Lldb-commits] [lldb] Add the ability to define a Python based command that uses CommandObjectParsed (PR #70734)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 13 14:35:43 PST 2023
================
@@ -476,6 +476,14 @@ class ScriptInterpreter : public PluginInterface {
return false;
}
+ virtual bool RunScriptBasedParsedCommand(
+ StructuredData::GenericSP impl_obj_sp, Args& args,
+ ScriptedCommandSynchronicity synchronicity,
+ lldb_private::CommandReturnObject &cmd_retobj, Status &error,
----------------
jimingham wrote:
This is another place where I'm just following what the Raw command form did. We can go clean up both, and probably should, but that seems like a separate pass over the code.
https://github.com/llvm/llvm-project/pull/70734
More information about the lldb-commits
mailing list