From 97c73adcfb6a870f15b1fbc9b3fd1a7f19ad6a4f Mon Sep 17 00:00:00 2001 From: Volker Berlin Date: Sat, 13 Oct 2018 20:48:34 +0200 Subject: [PATCH] Exception opcodes --- .../jwebassembly/binary/InstructionOpcodes.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java b/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java index f50b4f2..5a4101a 100644 --- a/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java +++ b/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java @@ -45,6 +45,16 @@ interface InstructionOpcodes { static final int ELSE = 0x05; + static final int TRY = 0x06; + + static final int CATCH = 0x07; + + static final int THROW = 0x08; + + static final int RETHROW = 0x09; + + static final int CATCHALL = 0x0A; + static final int END = 0x0B; /**