diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-10-18 19:13:06 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-10-18 19:13:06 +0000 |
commit | 85ced807f532fb5a315886de0f5ccfb53eaaadf0 (patch) | |
tree | ce9c9a60053b5c65ca1c72f953e62fd22ad0b732 /lldb/scripts/Python/interface | |
parent | 93b0f7b31949691508adac260890294f783ab68e (diff) | |
download | bcm5719-llvm-85ced807f532fb5a315886de0f5ccfb53eaaadf0.tar.gz bcm5719-llvm-85ced807f532fb5a315886de0f5ccfb53eaaadf0.zip |
Add docstrings for SetCondition() and GetCondition() APIs.
llvm-svn: 142396
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBBreakpoint.i | 10 | ||||
-rw-r--r-- | lldb/scripts/Python/interface/SBBreakpointLocation.i | 11 | ||||
-rw-r--r-- | lldb/scripts/Python/interface/SBWatchpoint.i | 10 |
3 files changed, 31 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBBreakpoint.i b/lldb/scripts/Python/interface/SBBreakpoint.i index 0ca83bf33cd..9e333c37287 100644 --- a/lldb/scripts/Python/interface/SBBreakpoint.i +++ b/lldb/scripts/Python/interface/SBBreakpoint.i @@ -128,9 +128,19 @@ public: uint32_t GetIgnoreCount () const; + %feature("docstring", " + //-------------------------------------------------------------------------- + /// The breakpoint stops only if the condition expression evaluates to true. + //-------------------------------------------------------------------------- + ") SetCondition; void SetCondition (const char *condition); + %feature("docstring", " + //------------------------------------------------------------------ + /// Get the condition expression for the breakpoint. + //------------------------------------------------------------------ + ") GetCondition; const char * GetCondition (); diff --git a/lldb/scripts/Python/interface/SBBreakpointLocation.i b/lldb/scripts/Python/interface/SBBreakpointLocation.i index d41033f2fea..093a0e6d380 100644 --- a/lldb/scripts/Python/interface/SBBreakpointLocation.i +++ b/lldb/scripts/Python/interface/SBBreakpointLocation.i @@ -50,9 +50,20 @@ public: void SetIgnoreCount (uint32_t n); + %feature("docstring", " + //-------------------------------------------------------------------------- + /// The breakpoint location stops only if the condition expression evaluates + /// to true. + //-------------------------------------------------------------------------- + ") SetCondition; void SetCondition (const char *condition); + %feature("docstring", " + //------------------------------------------------------------------ + /// Get the condition expression for the breakpoint location. + //------------------------------------------------------------------ + ") GetCondition; const char * GetCondition (); diff --git a/lldb/scripts/Python/interface/SBWatchpoint.i b/lldb/scripts/Python/interface/SBWatchpoint.i index 75259310271..47177c740f7 100644 --- a/lldb/scripts/Python/interface/SBWatchpoint.i +++ b/lldb/scripts/Python/interface/SBWatchpoint.i @@ -66,9 +66,19 @@ public: void SetIgnoreCount (uint32_t n); + %feature("docstring", " + //------------------------------------------------------------------ + /// Get the condition expression for the watchpoint. + //------------------------------------------------------------------ + ") GetCondition; const char * GetCondition (); + %feature("docstring", " + //-------------------------------------------------------------------------- + /// The watchpoint stops only if the condition expression evaluates to true. + //-------------------------------------------------------------------------- + ") SetCondition; void SetCondition (const char *condition); |