Return a unique name for the node.
(self)
| 89 | return self.children |
| 90 | |
| 91 | def get_name(self): |
| 92 | """ |
| 93 | Return a unique name for the node. |
| 94 | """ |
| 95 | return f'node{self.get_id()}' |
| 96 | |
| 97 | def get_html_table(self, nodes, slices, id_to_slices): |
| 98 | """ |
no test coverage detected