File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -165,8 +165,7 @@ public struct InputByteStream {
165
165
// https://webassembly.github.io/spec/core/binary/instructions.html#control-instructions
166
166
case 0x00 , 0x01 : break
167
167
case 0x02 , 0x03 , 0x04 : consumeBlockType ( )
168
- case 0x05 : break
169
- case 0x0B : break
168
+ case 0x05 , 0x0B : break
170
169
case 0x0C , 0x0D : _ = readVarUInt32 ( ) // label index
171
170
case 0x0E : consumeBrTable ( )
172
171
case 0x0F : break
@@ -182,8 +181,7 @@ public struct InputByteStream {
182
181
case 0x1A , 0x1B : break
183
182
184
183
// https://webassembly.github.io/spec/core/binary/instructions.html#variable-instructions
185
- case 0x20 : _ = readVarUInt32 ( )
186
- case 0x21 ... 0x24 : _ = readVarUInt32 ( ) // local index
184
+ case 0x20 ... 0x24 : _ = readVarUInt32 ( ) // local index
187
185
188
186
// https://webassembly.github.io/spec/core/binary/instructions.html#memory-instructions
189
187
case 0x28 ... 0x3E : consumeMemoryArg ( )
You can’t perform that action at this time.
0 commit comments