(self)
| 432 | return self.label is not None |
| 433 | |
| 434 | def __str__(self): |
| 435 | output = io.StringIO() |
| 436 | formatter = Formatter(file=output) |
| 437 | formatter.print_instruction(self, False) |
| 438 | return output.getvalue() |
| 439 | |
| 440 | |
| 441 | class Formatter: |
nothing calls this directly
no test coverage detected