================
@@ -58,6 +59,19 @@ class DWARFExpressionList {
   }
 
   lldb::addr_t GetFuncFileAddress() { return m_func_file_addr; }
+  
+  /// Represents an entry in the DWARFExpressionList with all needed metadata.
+  struct DWARFExpressionEntry {
+    AddressRange file_range; /// Represents a DWARF location range in the 
DWARF unit’s file‐address space
----------------
adrian-prantl wrote:

Either:
```
AddressRange file_range; ///< Represents a DWARF location range in the DWARF 
unit’s file‐address space.
```
or (preferred)
```
 /// Represents a DWARF location range in the DWARF unit’s file‐address space.
 AddressRange file_range;
```

https://github.com/llvm/llvm-project/pull/144238
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to