diff options
Diffstat (limited to 'src/opcode.def')
-rw-r--r-- | src/opcode.def | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/opcode.def b/src/opcode.def index 384687b8..a683c13c 100644 --- a/src/opcode.def +++ b/src/opcode.def @@ -36,6 +36,11 @@ WABT_OPCODE(___, ___, ___, 0, 0x02, Block, "block") WABT_OPCODE(___, ___, ___, 0, 0x03, Loop, "loop") WABT_OPCODE(___, ___, ___, 0, 0x04, If, "if") WABT_OPCODE(___, ___, ___, 0, 0x05, Else, "else") +WABT_OPCODE(___, ___, ___, 0, 0x06, Try, "try") +WABT_OPCODE(___, ___, ___, 0, 0x07, Catch, "catch") +WABT_OPCODE(___, ___, ___, 0, 0x08, Throw, "throw") +WABT_OPCODE(___, ___, ___, 0, 0x09, Rethrow, "rethrow") +WABT_OPCODE(___, ___, ___, 0, 0x0a, CatchAll, "catch_all") WABT_OPCODE(___, ___, ___, 0, 0x0b, End, "end") WABT_OPCODE(___, ___, ___, 0, 0x0c, Br, "br") WABT_OPCODE(___, ___, ___, 0, 0x0d, BrIf, "br_if") |