| 356 | }; |
| 357 | |
| 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 | }; |
| 366 | |
| 367 | // Test object with all POD field types to exercise serialization of every field kind. |
| 368 | class TAllFieldsObj : public Object { |