(self, block: _Block)
| 326 | return "\n".join(lines) |
| 327 | |
| 328 | def _predecessors(self, block: _Block) -> typing.Generator[_Block, None, None]: |
| 329 | # This is inefficient, but it's never wrong: |
| 330 | for pre in self._blocks(): |
| 331 | if pre.target is block or pre.fallthrough and pre.link is block: |
| 332 | yield pre |
| 333 | |
| 334 | def _insert_continue_label(self) -> None: |
| 335 | # Find the block with the last instruction: |
no test coverage detected