(self)
| 153 | self.assert_emit(Assign(self.i32, Integer(5, c_int_rprimitive)), "cpy_r_i32 = 5;") |
| 154 | |
| 155 | def test_tuple_get(self) -> None: |
| 156 | self.assert_emit(TupleGet(self.t, 1, 0), "cpy_r_r0 = cpy_r_t.f1;") |
| 157 | |
| 158 | def test_load_None(self) -> None: # noqa: N802 |
| 159 | self.assert_emit( |
nothing calls this directly
no test coverage detected