[Lldb-commits] [lldb] [LLDB][Data Formatters] Calculate average and total time for summary providers within lldb (PR #102708)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 4 13:23:59 PDT 2024
================
@@ -201,3 +216,12 @@ std::string ScriptSummaryFormat::GetDescription() {
}
return std::string(sstr.GetString());
}
+
+std::string ScriptSummaryFormat::GetName() { return m_script_formatter_name; }
+
+std::string ScriptSummaryFormat::GetSummaryKindName() {
+ if (!m_python_script.empty())
----------------
clayborg wrote:
Not sure what the difference between a "python" and "script" is? Lua is a supported scripting language, but it isn't used for any data formatting or summary providers.
https://github.com/llvm/llvm-project/pull/102708
More information about the lldb-commits
mailing list