| 515 | Status VisitType(const DataType& type) { return VisitTypeInline(type, this); } |
| 516 | |
| 517 | Status Visit(const NullType& type) { |
| 518 | fb_type_ = flatbuf::Type::Type_Null; |
| 519 | type_offset_ = flatbuf::CreateNull(fbb_).Union(); |
| 520 | return Status::OK(); |
| 521 | } |
| 522 | |
| 523 | Status Visit(const BooleanType& type) { |
| 524 | fb_type_ = flatbuf::Type::Type_Bool; |
nothing calls this directly
no test coverage detected