[Lldb-commits] [lldb] [lldb-dap] Support StackFrameFormat (PR #137113)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Apr 24 08:51:30 PDT 2025
================
@@ -178,14 +179,45 @@ void StackTraceRequestHandler::operator()(
llvm::json::Array stack_frames;
llvm::json::Object body;
+ lldb::SBFormat frame_format = dap.frame_format;
+
+ if (const auto *format = arguments->getObject("format")) {
+ const bool parameters = GetBoolean(format, "parameters").value_or(false);
+ const bool parameter_names =
+ GetBoolean(format, "parameterNames").value_or(false);
+ const bool parameter_values =
+ GetBoolean(format, "parameterValues").value_or(false);
+ const bool line = GetBoolean(format, "line").value_or(false);
+ const bool module = GetBoolean(format, "module").value_or(false);
+ const bool include_all = GetBoolean(format, "includeAll").value_or(false);
----------------
JDevlieghere wrote:
Great observation, you're right.
https://github.com/llvm/llvm-project/pull/137113
More information about the lldb-commits
mailing list