diff options
Diffstat (limited to 'src/wasm-binary.h')
-rw-r--r-- | src/wasm-binary.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index 16e7945c5..f8463f3b1 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -1179,6 +1179,7 @@ enum ASTNodes { // typed continuation opcodes ContNew = 0xe0, ContBind = 0xe1, + Suspend = 0xe2, Resume = 0xe3, }; @@ -1810,6 +1811,7 @@ public: void visitContNew(ContNew* curr); void visitContBind(ContBind* curr); void visitResume(Resume* curr); + void visitSuspend(Suspend* curr); [[noreturn]] void throwError(std::string text); |