Skip to content

Commit 19da086

Browse files
committed
link missing functionality to an issue
1 parent b957933 commit 19da086

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

crates/wasmtime/src/runtime/component/types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ impl TypeChecker<'_> {
158158
(InterfaceType::Stream(_), _) => false,
159159
(InterfaceType::ErrorContext(_), InterfaceType::ErrorContext(_)) => true,
160160
(InterfaceType::ErrorContext(_), _) => false,
161-
(InterfaceType::FixedSizeList(_), _) => todo!(),
161+
(InterfaceType::FixedSizeList(_), _) => todo!(), // FIXME(#12279)
162162
}
163163
}
164164

@@ -856,7 +856,7 @@ impl Type {
856856
InterfaceType::Future(index) => Type::Future(instance.future_type(*index)),
857857
InterfaceType::Stream(index) => Type::Stream(instance.stream_type(*index)),
858858
InterfaceType::ErrorContext(_) => Type::ErrorContext,
859-
InterfaceType::FixedSizeList(_) => todo!(),
859+
InterfaceType::FixedSizeList(_) => todo!(), // FIXME(#12279)
860860
}
861861
}
862862

crates/wasmtime/src/runtime/component/values.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ impl Val {
215215
InterfaceType::ErrorContext(_) => {
216216
ErrorContext::linear_lift_from_flat(cx, ty, next(src))?.into_val()
217217
}
218-
InterfaceType::FixedSizeList(_) => todo!(),
218+
InterfaceType::FixedSizeList(_) => todo!(), // FIXME(#12279)
219219
})
220220
}
221221

@@ -342,7 +342,7 @@ impl Val {
342342
InterfaceType::ErrorContext(_) => {
343343
ErrorContext::linear_lift_from_memory(cx, ty, bytes)?.into_val()
344344
}
345-
InterfaceType::FixedSizeList(_) => todo!(),
345+
InterfaceType::FixedSizeList(_) => todo!(), // FIXME(#12279)
346346
})
347347
}
348348

@@ -493,7 +493,7 @@ impl Val {
493493
)
494494
}
495495
(InterfaceType::ErrorContext(_), _) => unexpected(ty, self),
496-
(InterfaceType::FixedSizeList(_), _) => todo!(),
496+
(InterfaceType::FixedSizeList(_), _) => todo!(), // FIXME(#12279)
497497
}
498498
}
499499

@@ -647,7 +647,7 @@ impl Val {
647647
)
648648
}
649649
(InterfaceType::ErrorContext(_), _) => unexpected(ty, self),
650-
(InterfaceType::FixedSizeList(_), _) => todo!(),
650+
(InterfaceType::FixedSizeList(_), _) => todo!(), // FIXME(#12279)
651651
}
652652
}
653653

0 commit comments

Comments
 (0)