| 42 | |
| 43 | private: |
| 44 | struct ActionResult { |
| 45 | enum class Kind { |
| 46 | Error, |
| 47 | Types, |
| 48 | Type, |
| 49 | } kind; |
| 50 | |
| 51 | union { |
| 52 | const TypeVector* types; |
| 53 | Type type; |
| 54 | }; |
| 55 | }; |
| 56 | |
| 57 | void WABT_PRINTF_FORMAT(3, 4) |
| 58 | PrintError(const Location* loc, const char* fmt, ...); |
nothing calls this directly
no outgoing calls
no test coverage detected