(self)
| 165 | self.assert_emit(Assign(self.m, self.n), "cpy_r_m = cpy_r_n;") |
| 166 | |
| 167 | def test_int_add(self) -> None: |
| 168 | self.assert_emit_binary_op( |
| 169 | "+", self.n, self.m, self.k, "cpy_r_r0 = CPyTagged_Add(cpy_r_m, cpy_r_k);" |
| 170 | ) |
| 171 | |
| 172 | def test_int_sub(self) -> None: |
| 173 | self.assert_emit_binary_op( |
nothing calls this directly
no test coverage detected