(self)
| 139 | self.context = EmitterContext(NameGenerator([["mod"]]), True) |
| 140 | |
| 141 | def test_goto(self) -> None: |
| 142 | self.assert_emit(Goto(BasicBlock(2)), "goto CPyL2;") |
| 143 | |
| 144 | def test_goto_next_block(self) -> None: |
| 145 | next_block = BasicBlock(2) |
nothing calls this directly
no test coverage detected