Return the name of the wrapper function.
(self)
| 869 | self.ret_type = fn.ret_type |
| 870 | |
| 871 | def wrapper_name(self) -> str: |
| 872 | """Return the name of the wrapper function.""" |
| 873 | return "{}{}{}".format( |
| 874 | DUNDER_PREFIX, |
| 875 | self.target_name, |
| 876 | self.cl.name_prefix(self.emitter.names) if self.cl else "", |
| 877 | ) |
| 878 | |
| 879 | def use_goto(self) -> bool: |
| 880 | """Do we use a goto for error handling (instead of straight return)?""" |
no test coverage detected