[Lldb-commits] [lldb] [lldb-dap] Handle stack frames without a module (PR #136777)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 23 20:16:47 PDT 2025
================
@@ -783,6 +783,16 @@ llvm::json::Value CreateStackFrame(lldb::SBFrame &frame,
// Line numbers are 1-based.
object.try_emplace("line", inst_line + 1);
object.try_emplace("column", 1);
+ } else {
+ // No valid line entry or symbol
----------------
JDevlieghere wrote:
```suggestion
// No valid line entry or symbol.
```
https://github.com/llvm/llvm-project/pull/136777
More information about the lldb-commits
mailing list