diff options
author | Jim Ingham <jingham@apple.com> | 2015-11-03 02:11:24 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2015-11-03 02:11:24 +0000 |
commit | 19a63fc6faa85b094e23fe15d432c7c66a5df2c6 (patch) | |
tree | 98acc906bae6e36df75e07d46f9fe73d117ba987 /lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp | |
parent | 95c453a221d5e757830145c2d5198c3a9da3f4b2 (diff) | |
download | bcm5719-llvm-19a63fc6faa85b094e23fe15d432c7c66a5df2c6.tar.gz bcm5719-llvm-19a63fc6faa85b094e23fe15d432c7c66a5df2c6.zip |
Add the ability to pass an EvaluateExpressionOptions when you make a UserExpression. This
isn't used in this commit but will be in a future commit.
llvm-svn: 251887
Diffstat (limited to 'lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp')
-rw-r--r-- | lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp b/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp index 117a480928c..7cc294eeb2f 100644 --- a/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp +++ b/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp @@ -218,8 +218,9 @@ LookupType(TargetSP target, ConstString name) return CompilerType(); } GoUserExpression::GoUserExpression(ExecutionContextScope &exe_scope, const char *expr, const char *expr_prefix, - lldb::LanguageType language, ResultType desired_type) - : UserExpression(exe_scope, expr, expr_prefix, language, desired_type) + lldb::LanguageType language, ResultType desired_type, + const EvaluateExpressionOptions &options) + : UserExpression(exe_scope, expr, expr_prefix, language, desired_type, options) { } |