diff options
Diffstat (limited to 'src/wasm-binary.h')
-rw-r--r-- | src/wasm-binary.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index aea9e56d8..c0225c270 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -474,6 +474,8 @@ enum ASTNodes { GlobalGet = 0x23, GlobalSet = 0x24, + TableGet = 0x25, + I32LoadMem = 0x28, I64LoadMem = 0x29, F32LoadMem = 0x2a, @@ -1659,6 +1661,7 @@ public: void visitRefIs(RefIs* curr, uint8_t code); void visitRefFunc(RefFunc* curr); void visitRefEq(RefEq* curr); + void visitTableGet(TableGet* curr); void visitTryOrTryInBlock(Expression*& out); void visitThrow(Throw* curr); void visitRethrow(Rethrow* curr); |