diff options
author | Sean Callanan <scallanan@apple.com> | 2016-10-11 16:57:21 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2016-10-11 16:57:21 +0000 |
commit | 0354a6888fd5e189a9c17442722e65dd5a78382e (patch) | |
tree | 1acc6e65df2d983cc087b05af3b0fb545dc784a8 /lldb/source/Commands/CommandObjectExpression.cpp | |
parent | 58b498728434310589148e693f90172146095d76 (diff) | |
download | llvm-0354a6888fd5e189a9c17442722e65dd5a78382e.zip llvm-0354a6888fd5e189a9c17442722e65dd5a78382e.tar.gz llvm-0354a6888fd5e189a9c17442722e65dd5a78382e.tar.bz2 |
Clarified the explanation of expr --top-level.
llvm-svn: 283904
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 80f20a3..56aae93 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -62,8 +62,8 @@ static OptionDefinition g_expression_options[] = { "setting is used." }, {LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "apply-fixits", 'X', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeLanguage, "If true, simple fix-it hints will be automatically applied to the expression." }, {LLDB_OPT_SET_1, false, "description-verbosity", 'v', OptionParser::eOptionalArgument, nullptr, g_description_verbosity_type, 0, eArgTypeDescriptionVerbosity, "How verbose should the output of this expression be, if the object description is asked for."}, - {LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "top-level", 'p', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Interpret the expression as top-level definitions rather than code to be immediately " - "executed."}, + {LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "top-level", 'p', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Interpret the expression as a complete translation unit, without injecting it into the local " + "context. Allows declaration of persistent, top-level entities without a $ prefix."}, {LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "allow-jit", 'j', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeBoolean, "Controls whether the expression can fall back to being JITted if it's not supported by " "the interpreter (defaults to true)."} // clang-format on |