(self, indent)
| 560 | self.end = "\n return self" |
| 561 | |
| 562 | def emit(self, indent): |
| 563 | encoding = "# coding: utf-8\n" |
| 564 | return encoding + self.defwith + self.suite.emit(indent + INDENT) + self.end |
| 565 | |
| 566 | def __repr__(self): |
| 567 | return f"<defwith: {self.defwith}, {self.suite}>" |