From 85ced807f532fb5a315886de0f5ccfb53eaaadf0 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Tue, 18 Oct 2011 19:13:06 +0000 Subject: Add docstrings for SetCondition() and GetCondition() APIs. llvm-svn: 142396 --- lldb/scripts/Python/interface/SBWatchpoint.i | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lldb/scripts/Python/interface/SBWatchpoint.i') 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); -- cgit v1.2.3