| 358 | class TCustomFunc : public ObjectRef { |
| 359 | public: |
| 360 | explicit TCustomFunc(Array<TVar> params, Array<ObjectRef> body, String comment) { |
| 361 | data_ = make_object<TCustomFuncObj>(params, body, comment); |
| 362 | } |
| 363 | |
| 364 | TVM_FFI_DEFINE_OBJECT_REF_METHODS_NULLABLE(TCustomFunc, ObjectRef, TCustomFuncObj); |
| 365 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected