(self)
| 281 | self.assert_emit(b, """if (likely(cpy_r_b)) goto CPyL9;""", next_block=next_block) |
| 282 | |
| 283 | def test_call(self) -> None: |
| 284 | decl = FuncDecl( |
| 285 | "myfn", None, "mod", FuncSignature([RuntimeArg("m", int_rprimitive)], int_rprimitive) |
| 286 | ) |
| 287 | self.assert_emit(Call(decl, [self.m], 55), "cpy_r_r0 = CPyDef_myfn(cpy_r_m);") |
| 288 | |
| 289 | def test_call_two_args(self) -> None: |
| 290 | decl = FuncDecl( |
nothing calls this directly
no test coverage detected