| 568 | |
| 569 | |
| 570 | class TextNode: |
| 571 | def __init__(self, value): |
| 572 | self.value = value |
| 573 | |
| 574 | def emit(self, indent, begin_indent=""): |
| 575 | return repr(safeunicode(self.value)) |
| 576 | |
| 577 | def __repr__(self): |
| 578 | return "t" + repr(self.value) |
| 579 | |
| 580 | |
| 581 | class ExpressionNode: |