Labels are what you see on the graph :rtype: str
(self)
| 340 | return djoin(ret) |
| 341 | |
| 342 | def label(self): |
| 343 | """ |
| 344 | Labels are what you see on the graph |
| 345 | :rtype: str |
| 346 | """ |
| 347 | if self.line_number is not None: |
| 348 | return f"{self.line_number}: {self.token}()" |
| 349 | return f"{self.token}()" |
| 350 | |
| 351 | def remove_from_parent(self): |
| 352 | """ |