List all available functions.
(self)
| 467 | return None |
| 468 | |
| 469 | def list_functions(self) -> dict[str, list[str]]: |
| 470 | """List all available functions.""" |
| 471 | return { |
| 472 | "tirx": self.tir_func_names, |
| 473 | "relax": self.relax_func_names, |
| 474 | "extern": list(self.extern_funcs.keys()), |
| 475 | } |
| 476 | |
| 477 | def add_python_function(self, name: str, func: callable): |
| 478 | """Add a Python function to the module.""" |
no test coverage detected