Per-demangled-name aggregation row for the summary table.
| 193 | |
| 194 | @dataclass |
| 195 | class _AggBucket: |
| 196 | """Per-demangled-name aggregation row for the summary table.""" |
| 197 | |
| 198 | size: int = 0 |
| 199 | archive: str = "" |
| 200 | object: str = "" |
| 201 | sources: set[str] = field(default_factory=lambda: set[str]()) |
| 202 | |
| 203 | |
| 204 | def print_summary(report_json: Path, top: int) -> None: |