Path 1: 12 calls (1.0)

Section (12)

1def visit_section(self, layout: Section) -> None:
2        """Display a section as text."""
3        self.section += 1
4        self.writeln()
5        self.format_children(layout)
6        self.section -= 1
7        self.writeln()