diff options
Diffstat (limited to 'src/wasm-s-parser.h')
-rw-r--r-- | src/wasm-s-parser.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/wasm-s-parser.h b/src/wasm-s-parser.h index 7b8faa16b..cfd21661d 100644 --- a/src/wasm-s-parser.h +++ b/src/wasm-s-parser.h @@ -321,18 +321,16 @@ private: Expression* makeStringEncode(Element& s, StringEncodeOp op); Expression* makeStringConcat(Element& s); Expression* makeStringEq(Element& s, StringEqOp op); - Expression* makeStringAs(Element& s, StringAsOp op); Expression* makeStringWTF8Advance(Element& s); Expression* makeStringWTF16Get(Element& s); - Expression* makeStringIterNext(Element& s); - Expression* makeStringIterMove(Element& s, StringIterMoveOp op); - Expression* makeStringSliceWTF(Element& s, StringSliceWTFOp op); - Expression* makeStringSliceIter(Element& s); + Expression* makeStringSliceWTF(Element& s); Expression* makeContBind(Element& s); Expression* makeContNew(Element& s); Expression* makeResume(Element& s); Expression* makeSuspend(Element& s); + Expression* ignore(Element& s) { WASM_UNREACHABLE("unsupported"); } + // Helper functions Type parseBlockType(Element& s, Index& i); Index parseMemoryLimits(Element& s, Index i, std::unique_ptr<Memory>& memory); |