From 22c55d180ddc9772ee03d5034677d27a2735c92e Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Fri, 12 Aug 2011 02:00:06 +0000 Subject: *Some more optimizations in usage of ConstString *New setting target.max-children-count gives an upper-bound to the number of child objects that will be displayed at each depth-level This might be a breaking change in some scenarios. To override the new limit you can use the --show-all-children (-A) option to frame variable or increase the limit in your lldbinit file *Command "type synthetic" has been split in two: - "type synthetic" now only handles Python synthetic children providers - the new command "type filter" handles filters Because filters and synthetic providers are both ways to replace the children of a ValueObject, only one can be effective at any given time. llvm-svn: 137416 --- lldb/source/Commands/CommandObjectExpression.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectExpression.cpp') diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 86c2fd7..ca5ca15 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -340,7 +340,8 @@ CommandObjectExpression::EvaluateExpression true, // Use synthetic children if available true, // Scope is already checked. Const results are always in scope. false, // Don't flatten output - 0); // Always use summaries (you might want an option --no-summary like there is for frame variable) + 0, // Always use summaries (you might want an option --no-summary like there is for frame variable) + false); // Do not show more children than settings allow if (result) result->SetStatus (eReturnStatusSuccessFinishResult); } -- cgit v1.1