(content: str)
| 550 | indent = " " * depth |
| 551 | comp_count = len(info.get("components", [])) |
| 552 | children = info.get("children", {}) |
| 553 | child_count = len(children) if isinstance(children, dict) else 0 |
| 554 | lines.append(f"{indent}- {name} ({comp_count} components, {child_count} children)") |
| 555 | if isinstance(children, dict) and children: |
| 556 | lines.extend(_summarize_tree(children, depth + 1)) |
no outgoing calls
no test coverage detected