Add a doc string for ReturnFromFrame.

llvm-svn: 250082
This commit is contained in:
Jim Ingham 2015-10-12 19:02:08 +00:00
parent ab1e86b223
commit ee205c43f7
1 changed files with 7 additions and 0 deletions

View File

@ -229,6 +229,13 @@ public:
void
RunToAddress (lldb::addr_t addr);
%feature("autodoc", "
Force a return from the frame passed in (and any frames younger than it)
without executing any more code in those frames. If return_value contains
a valid SBValue, that will be set as the return value from frame. Note, at
present only scalar return values are supported.
") ReturnFromFrame;
SBError
ReturnFromFrame (SBFrame &frame, SBValue &return_value);