MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / lower_record

Function lower_record

crates/test-util/src/component_fuzz.rs:647–651  ·  view source on GitHub ↗
(types: impl Iterator<Item = &'a Type>, vec: &mut Vec<CoreType>)

Source from the content-addressed store, hash-verified

645}
646
647fn lower_record<'a>(types: impl Iterator<Item = &'a Type>, vec: &mut Vec<CoreType>) {
648 for ty in types {
649 ty.lower(vec);
650 }
651}
652
653fn lower_variant<'a>(types: impl Iterator<Item = Option<&'a Type>>, vec: &mut Vec<CoreType>) {
654 vec.push(CoreType::I32);

Callers 1

lowerMethod · 0.85

Calls 1

lowerMethod · 0.45

Tested by

no test coverage detected