(&mut self, address: &str, ty: &Type, _module: &str)
| 496 | } |
| 497 | |
| 498 | fn lift_from_memory(&mut self, address: &str, ty: &Type, _module: &str) -> (String, String) { |
| 499 | let mut f = FunctionBindgen::new(self, Box::new([])); |
| 500 | |
| 501 | let result = abi::lift_from_memory(f.interface_gen.resolve, &mut f, address.into(), ty); |
| 502 | (f.src, result) |
| 503 | } |
| 504 | |
| 505 | fn lower_to_memory(&mut self, address: &str, value: &str, ty: &Type, _module: &str) -> String { |
| 506 | let mut f = FunctionBindgen::new(self, Box::new([])); |
no test coverage detected