We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5866a5a commit 8dda6d3Copy full SHA for 8dda6d3
1 file changed
crates/go/src/lib.rs
@@ -2613,10 +2613,7 @@ for index := 0; index < int({length}); index++ {{
2613
}
2614
Instruction::IterMapKey { .. } => results.push("map_key".into()),
2615
Instruction::IterMapValue { .. } => results.push("map_value".into()),
2616
- Instruction::GuestDeallocateMap { .. } => {
2617
- // Nothing to do here; should be handled when calling `pinner.Unpin()`
2618
- }
2619
- Instruction::GuestDeallocate { .. } => {
+ Instruction::GuestDeallocateMap { .. } | Instruction::GuestDeallocate { .. } => {
2620
// Nothing to do here; should be handled when calling `pinner.Unpin()`
2621
2622
_ => unimplemented!("{instruction:?}"),
0 commit comments