(self, rtype: RType)
| 388 | assert False, rtype |
| 389 | |
| 390 | def c_error_value(self, rtype: RType) -> str: |
| 391 | return self.c_undefined_value(rtype) |
| 392 | |
| 393 | def native_function_name(self, fn: FuncDecl) -> str: |
| 394 | return f"{NATIVE_PREFIX}{fn.cname(self.names)}" |
no test coverage detected