(self)
| 87 | return ' '.join(['(', '{}[{}]'.format(self.val, self.data_type)] + fields_str + [')']) |
| 88 | |
| 89 | def __str__(self): |
| 90 | return self.logical_form() |
| 91 | |
| 92 | def __repr__(self): |
| 93 | return self.logical_form() |
nothing calls this directly
no test coverage detected