| 307 | class TFunc : public ObjectRef { |
| 308 | public: |
| 309 | explicit TFunc(Array<TVar> params, Array<ObjectRef> body, Optional<String> comment) { |
| 310 | data_ = make_object<TFuncObj>(params, body, comment); |
| 311 | } |
| 312 | |
| 313 | TVM_FFI_DEFINE_OBJECT_REF_METHODS_NULLABLE(TFunc, ObjectRef, TFuncObj); |
| 314 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected