We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61300c8 commit e5a20d0Copy full SHA for e5a20d0
crates/wasmparser/src/readers/component/types.rs
@@ -529,6 +529,7 @@ impl<'a> ComponentDefinedType<'a> {
529
.collect::<Result<_>>()?,
530
),
531
0x70 => ComponentDefinedType::List(reader.read()?),
532
+ 0x67 => ComponentDefinedType::FixedSizeList(reader.read()?, reader.read_var_u32()? as usize),
533
0x6f => ComponentDefinedType::Tuple(
534
reader
535
.read_iter(MAX_WASM_TUPLE_TYPES, "tuple types")?
0 commit comments