[Lldb-commits] [lldb] [LLDB] Add field member operators to DIL (PR #138093)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri May 2 06:00:05 PDT 2025
================
@@ -272,4 +272,204 @@ Interpreter::Visit(const UnaryOpNode *node) {
m_expr, "invalid ast: unexpected binary operator", node->GetLocation());
}
+lldb::ValueObjectSP
+Interpreter::EvaluateMemberOf(lldb::ValueObjectSP value,
+ const std::vector<uint32_t> &path,
+ bool use_synthetic, bool is_dynamic) {
----------------
labath wrote:
`use_dynamic` was passed in the the parser as a `lldb::DynamicValueType`. Why did it turn into a `bool` here?
https://github.com/llvm/llvm-project/pull/138093
More information about the lldb-commits
mailing list