diff options
Diffstat (limited to 'scripts/interface/SBExpressionOptions.i')
-rw-r--r-- | scripts/interface/SBExpressionOptions.i | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/interface/SBExpressionOptions.i b/scripts/interface/SBExpressionOptions.i index 1f423cf47e425..cb61dd9d9632c 100644 --- a/scripts/interface/SBExpressionOptions.i +++ b/scripts/interface/SBExpressionOptions.i @@ -118,6 +118,20 @@ public: %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); + + %feature("docstring", "Sets whether to auto-apply fix-it hints to the expression being evaluated.") SetAutoApplyFixIts; + void + SetAutoApplyFixIts(bool b = true); + + %feature("docstring", "Gets whether to auto-apply fix-it hints to an expression.") GetAutoApplyFixIts; + bool + GetAutoApplyFixIts(); + + bool + GetTopLevel(); + + void + SetTopLevel(bool b = true); protected: |