| ... | @@ -188,6 +188,8 @@ pub const Opcode = enum(u8) { | ... | @@ -188,6 +188,8 @@ pub const Opcode = enum(u8) { |
| 188 | i64_extend8_s = 0xC2, | 188 | i64_extend8_s = 0xC2, |
| 189 | i64_extend16_s = 0xC3, | 189 | i64_extend16_s = 0xC3, |
| 190 | i64_extend32_s = 0xC4, | 190 | i64_extend32_s = 0xC4, |
| | 191 | |
| | 192 | prefixed = 0xFC, |
| 191 | _, | 193 | _, |
| 192 | }; | 194 | }; |
| 193 | | 195 | |
| ... | @@ -232,6 +234,7 @@ pub const PrefixedOpcode = enum(u8) { | ... | @@ -232,6 +234,7 @@ pub const PrefixedOpcode = enum(u8) { |
| 232 | table_grow = 0x0F, | 234 | table_grow = 0x0F, |
| 233 | table_size = 0x10, | 235 | table_size = 0x10, |
| 234 | table_fill = 0x11, | 236 | table_fill = 0x11, |
| | 237 | _, |
| 235 | }; | 238 | }; |
| 236 | | 239 | |
| 237 | /// Enum representing all Wasm value types as per spec: | 240 | /// Enum representing all Wasm value types as per spec: |