(type_cls: type)
| 62 | |
| 63 | |
| 64 | def _field_map(type_cls: type) -> dict[str, Any]: |
| 65 | return {field.name: field for field in getattr(type_cls, "__tvm_ffi_type_info__").fields} |
| 66 | |
| 67 | |
| 68 | def _method_metadata(type_cls: type, method_name: str) -> dict[str, Any]: |
no outgoing calls
no test coverage detected