diff options
Diffstat (limited to 'lldb/scripts/Python/interface/SBBreakpointLocation.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBBreakpointLocation.i | 11 |
1 files changed, 11 insertions, 0 deletions
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 (); |