Adding support for fetching the Dynamic Value for ObjC Objects.
llvm-svn: 130701
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp
index 1f443e8..521d3eb 100644
--- a/lldb/source/Core/ValueObject.cpp
+++ b/lldb/source/Core/ValueObject.cpp
@@ -1644,6 +1644,16 @@
return true;
}
+void
+ValueObject::EvaluationPoint::SetUpdated ()
+{
+ m_first_update = false;
+ m_needs_update = false;
+ if (m_process_sp)
+ m_stop_id = m_process_sp->GetStopID();
+}
+
+
bool
ValueObject::EvaluationPoint::SetContext (ExecutionContextScope *exe_scope)
{