| 31 | } |
| 32 | |
| 33 | const char* GetSectionName(BinarySection sec) { |
| 34 | switch (sec) { |
| 35 | #define V(Name, name, code) \ |
| 36 | case BinarySection::Name: \ |
| 37 | return #Name; |
| 38 | WABT_FOREACH_BINARY_SECTION(V) |
| 39 | #undef V |
| 40 | default: |
| 41 | WABT_UNREACHABLE; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // clang-format off |
| 46 | const char* NameSubsectionName[] = { |
no outgoing calls
no test coverage detected