diff options
Diffstat (limited to 'lldb/scripts/interface/SBExpressionOptions.i')
| -rw-r--r-- | lldb/scripts/interface/SBExpressionOptions.i | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/scripts/interface/SBExpressionOptions.i b/lldb/scripts/interface/SBExpressionOptions.i index 6ee3e3b64fa..1f423cf47e4 100644 --- a/lldb/scripts/interface/SBExpressionOptions.i +++ b/lldb/scripts/interface/SBExpressionOptions.i @@ -111,6 +111,13 @@ public: SetSuppressPersistentResult (bool b = false); + %feature("docstring", "Gets the prefix to use for this expression.") GetPrefix; + const char * + GetPrefix () const; + + %feature("docstring", "Sets the prefix to use for this expression. This prefix gets inserted after the 'target.expr-prefix' prefix contents, but before the wrapped expression function body.") SetPrefix; + void + SetPrefix (const char *prefix); protected: |

