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