| 488 | } |
| 489 | |
| 490 | inline bool IsEnum(const Type &type) { |
| 491 | return type.enum_def != nullptr && IsInteger(type.base_type); |
| 492 | } |
| 493 | |
| 494 | inline size_t InlineSize(const Type &type) { |
| 495 | return IsStruct(type) |
nothing calls this directly
no test coverage detected