| 533 | |
| 534 | |
| 535 | class _ChunkList(_Node): |
| 536 | def __init__(self, chunks: List[_Node]) -> None: |
| 537 | self.chunks = chunks |
| 538 | |
| 539 | def generate(self, writer: "_CodeWriter") -> None: |
| 540 | for chunk in self.chunks: |
| 541 | chunk.generate(writer) |
| 542 | |
| 543 | def each_child(self) -> Iterable["_Node"]: |
| 544 | return self.chunks |
| 545 | |
| 546 | |
| 547 | class _NamedBlock(_Node): |
no outgoing calls
no test coverage detected
searching dependent graphs…