(self)
| 162 | super().__init__('COMP', val, data_type, fields) |
| 163 | |
| 164 | def textual_form_core(self): |
| 165 | prompt = CompNode.PROMPT_DICT[self.val] |
| 166 | return ' '.join([self.fields[0].textual_form(), prompt, self.fields[1].textual_form()]) |
| 167 | |
| 168 | class EntityNode(ASTNode): |
| 169 | def __init__(self, val, data_type, fields): |
nothing calls this directly
no test coverage detected