[Lldb-commits] [lldb] [lldb-dap] Add readOnly attribute for variables (PR #151884)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 6 03:36:11 PDT 2025
================
@@ -301,6 +301,14 @@ Variable CreateVariable(lldb::SBValue v, int64_t var_ref, bool format_hex,
if (lldb::addr_t addr = v.GetLoadAddress(); addr != LLDB_INVALID_ADDRESS)
var.memoryReference = addr;
+ bool is_readonly = v.GetType().IsAggregateType() ||
----------------
labath wrote:
If we're going to be implementing this in the SB API, then I don't think SBType is the right place for it. It should probably be a property of SBValue, as one can easily imagine situations where a value is not modifiable, even though another value of the same type is.
https://github.com/llvm/llvm-project/pull/151884
More information about the lldb-commits
mailing list