Searched defs:WasmFunctionType (Results 1 – 1 of 1) sorted by relevance
61 struct WasmFunctionType { struct63 enum { Plain, Empty, Tombstone } State;66 SmallVector<wasm::ValType, 1> Returns;69 SmallVector<wasm::ValType, 4> Params;71 WasmFunctionType() : State(Plain) {} in WasmFunctionType() function73 bool operator==(const WasmFunctionType &Other) const { in operator ==()