diff options
Diffstat (limited to 'lldb/source/API/SBFrame.cpp')
-rw-r--r-- | lldb/source/API/SBFrame.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lldb/source/API/SBFrame.cpp b/lldb/source/API/SBFrame.cpp index 425185488f9..0b2db3328dd 100644 --- a/lldb/source/API/SBFrame.cpp +++ b/lldb/source/API/SBFrame.cpp @@ -409,3 +409,13 @@ SBFrame::GetDescription (SBStream &description) return true; } + +lldb::SBValue +SBFrame::EvaluateExpression (const char *expr) +{ + lldb::SBValue expr_result_value; + if (m_opaque_sp) + { + } + return expr_result_value; +} |