(x: Any)
| 17 | |
| 18 | |
| 19 | def get_dict(x: Any) -> dict[str, Any]: |
| 20 | if hasattr(x, "__mypyc_attrs__"): |
| 21 | return {k: getattr(x, k) for k in x.__mypyc_attrs__ if hasattr(x, k)} |
| 22 | else: |
| 23 | return dict(x.__dict__) |
| 24 | |
| 25 | |
| 26 | def get_function_dict(x: FuncIR) -> dict[str, Any]: |
no test coverage detected
searching dependent graphs…