(types: impl Iterator<Item = &'a Type>, vec: &mut Vec<CoreType>)
| 645 | } |
| 646 | |
| 647 | fn 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 | |
| 653 | fn lower_variant<'a>(types: impl Iterator<Item = Option<&'a Type>>, vec: &mut Vec<CoreType>) { |
| 654 | vec.push(CoreType::I32); |