(self, template: Template, body: "_ChunkList")
| 516 | |
| 517 | class _File(_Node): |
| 518 | def __init__(self, template: Template, body: "_ChunkList") -> None: |
| 519 | self.template = template |
| 520 | self.body = body |
| 521 | self.line = 0 |
| 522 | |
| 523 | def generate(self, writer: "_CodeWriter") -> None: |
| 524 | writer.write_line("def _tt_execute():", self.line) |