(self)
| 80 | ) |
| 81 | |
| 82 | def test_emit_inc_ref_object(self) -> None: |
| 83 | self.emitter.emit_inc_ref("x", object_rprimitive) |
| 84 | self.assert_output("CPy_INCREF(x);\n") |
| 85 | |
| 86 | def test_emit_inc_ref_int(self) -> None: |
| 87 | self.emitter.emit_inc_ref("x", int_rprimitive) |
nothing calls this directly
no test coverage detected