diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbutil.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbutil.py b/lldb/packages/Python/lldbsuite/test/lldbutil.py index 8112705..b8a78b7 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbutil.py +++ b/lldb/packages/Python/lldbsuite/test/lldbutil.py @@ -1464,8 +1464,8 @@ class ChildVisitingFormatter(BasicFormatter): return output.getvalue() -class RecursiveDecentFormatter(BasicFormatter): - """The recursive decent formatter prints the value and the decendents. +class RecursiveDescentFormatter(BasicFormatter): + """The recursive descent formatter prints the value and the descendents. The constructor takes two keyword args: indent_level, which defaults to 0, and indent_child, which defaults to 2. The current indentation level is @@ -1482,7 +1482,6 @@ class RecursiveDecentFormatter(BasicFormatter): output = io.StringIO() else: output = buffer - BasicFormatter.format(self, value, buffer=output, indent=self.lindent) new_indent = self.lindent + self.cindent for child in value: @@ -1490,7 +1489,7 @@ class RecursiveDecentFormatter(BasicFormatter): BasicFormatter.format(self, child, buffer=output, indent=new_indent) else: if child.GetNumChildren() > 0: - rdf = RecursiveDecentFormatter(indent_level=new_indent) + rdf = RecursiveDescentFormatter(indent_level=new_indent) rdf.format(child, buffer=output) else: BasicFormatter.format(self, child, buffer=output, indent=new_indent) |