(self)
| 142 | self.assert_emit(Goto(BasicBlock(2)), "goto CPyL2;") |
| 143 | |
| 144 | def test_goto_next_block(self) -> None: |
| 145 | next_block = BasicBlock(2) |
| 146 | self.assert_emit(Goto(next_block), "", next_block=next_block) |
| 147 | |
| 148 | def test_return(self) -> None: |
| 149 | self.assert_emit(Return(self.m), "return cpy_r_m;") |
nothing calls this directly
no test coverage detected