(
self, derived_cl: ClassIR, tp_func: str, args: str, *, prefix: str = ""
)
| 1442 | return wrapper_name |
| 1443 | |
| 1444 | def emit_base_tp_function_call( |
| 1445 | self, derived_cl: ClassIR, tp_func: str, args: str, *, prefix: str = "" |
| 1446 | ) -> None: |
| 1447 | type_obj = self.type_struct_name(derived_cl) |
| 1448 | self.emit_line(f"{prefix}{type_obj}->tp_base->{tp_func}({args});") |
| 1449 | |
| 1450 | |
| 1451 | def c_array_initializer(components: list[str], *, indented: bool = False) -> str: |
no test coverage detected