| 294 | |
| 295 | |
| 296 | class Gather(Repeat): |
| 297 | def __init__(self, separator: Plain, node: Plain): |
| 298 | self.separator = separator |
| 299 | self.node = node |
| 300 | |
| 301 | def __str__(self) -> str: |
| 302 | return f"{self.separator!s}.{self.node!s}+" |
| 303 | |
| 304 | def __repr__(self) -> str: |
| 305 | return f"Gather({self.separator!r}, {self.node!r})" |
| 306 | |
| 307 | |
| 308 | class Group: |
no outgoing calls
no test coverage detected
searching dependent graphs…