(&mut self, address: &str, value: &str, ty: &Type, module: &str)
| 768 | } |
| 769 | |
| 770 | fn lower_to_memory(&mut self, address: &str, value: &str, ty: &Type, module: &str) -> String { |
| 771 | let mut f = FunctionBindgen::new(self, Vec::new(), module, true, false); |
| 772 | abi::lower_to_memory(f.r#gen.resolve, &mut f, address.into(), value.into(), ty); |
| 773 | format!("unsafe {{ {} }}", String::from(f.src)) |
| 774 | } |
| 775 | |
| 776 | fn deallocate_lists( |
| 777 | &mut self, |
no test coverage detected