(self, writer: "_CodeWriter")
| 624 | return (self.body,) |
| 625 | |
| 626 | def generate(self, writer: "_CodeWriter") -> None: |
| 627 | writer.write_line("%s:" % self.statement, self.line) |
| 628 | with writer.indent(): |
| 629 | self.body.generate(writer) |
| 630 | # Just in case the body was empty |
| 631 | writer.write_line("pass", self.line) |
| 632 | |
| 633 | |
| 634 | class _IntermediateControlBlock(_Node): |
nothing calls this directly
no test coverage detected