diff options
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBValueList.i | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBValueList.i b/lldb/scripts/Python/interface/SBValueList.i index a55345030c0..12aed864830 100644 --- a/lldb/scripts/Python/interface/SBValueList.i +++ b/lldb/scripts/Python/interface/SBValueList.i @@ -96,6 +96,10 @@ public: lldb::SBValue FindValueObjectByUID (lldb::user_id_t uid); + + lldb::SBValue + GetValueByName (const char* name) const; + %pythoncode %{ def __len__(self): return int(self.GetSize()) |