(self)
| 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;") |
| 150 | |
| 151 | def test_integer(self) -> None: |
| 152 | self.assert_emit(Assign(self.n, Integer(5)), "cpy_r_n = 10;") |
nothing calls this directly
no test coverage detected