diff options
Diffstat (limited to 'include/lldb/Core/ValueObjectConstResult.h')
-rw-r--r-- | include/lldb/Core/ValueObjectConstResult.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/lldb/Core/ValueObjectConstResult.h b/include/lldb/Core/ValueObjectConstResult.h index dd87fc848ae89..4e05d50132ec8 100644 --- a/include/lldb/Core/ValueObjectConstResult.h +++ b/include/lldb/Core/ValueObjectConstResult.h @@ -59,7 +59,8 @@ public: static lldb::ValueObjectSP Create (ExecutionContextScope *exe_scope, Value &value, - const ConstString &name); + const ConstString &name, + Module* module = nullptr); // When an expression fails to evaluate, we return an error static lldb::ValueObjectSP @@ -126,6 +127,9 @@ public: virtual lldb::ValueObjectSP GetDynamicValue (lldb::DynamicValueType valueType); + + virtual lldb::LanguageType + GetPreferredDisplayLanguage (); protected: virtual bool @@ -169,7 +173,8 @@ private: ValueObjectConstResult (ExecutionContextScope *exe_scope, const Value &value, - const ConstString &name); + const ConstString &name, + Module* module = nullptr); ValueObjectConstResult (ExecutionContextScope *exe_scope, const Error& error); |