| 60 | // clang-format on |
| 61 | |
| 62 | const char* GetNameSectionSubsectionName(NameSectionSubsection subsec) { |
| 63 | static_assert(WABT_ENUM_COUNT(NameSectionSubsection) == |
| 64 | WABT_ARRAY_SIZE(NameSubsectionName), |
| 65 | "Malformed ExprTypeName array"); |
| 66 | return NameSubsectionName[size_t(subsec)]; |
| 67 | } |
| 68 | |
| 69 | } // namespace wabt |
no outgoing calls
no test coverage detected