| 190 | explicit TVarObj(UnsafeInit) {} |
| 191 | |
| 192 | static void RegisterReflection() { |
| 193 | namespace refl = tvm::ffi::reflection; |
| 194 | refl::ObjectDef<TVarObj>().def_ro("name", &TVarObj::name, |
| 195 | refl::AttachFieldFlag::SEqHashIgnore()); |
| 196 | } |
| 197 | |
| 198 | static constexpr TVMFFISEqHashKind _type_s_eq_hash_kind = kTVMFFISEqHashKindFreeVar; |
| 199 | TVM_FFI_DECLARE_OBJECT_INFO_FINAL("test.Var", TVarObj, Object); |
nothing calls this directly
no outgoing calls
no test coverage detected