MCPcopy Create free account
hub / github.com/WebAssembly/wabt / ActionResult

Class ActionResult

src/validator.cc:44–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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, ...);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected