(
&mut self,
types: &[Type],
operands: &[String],
indirect: bool,
module: &str,
)
| 774 | } |
| 775 | |
| 776 | fn deallocate_lists( |
| 777 | &mut self, |
| 778 | types: &[Type], |
| 779 | operands: &[String], |
| 780 | indirect: bool, |
| 781 | module: &str, |
| 782 | ) -> String { |
| 783 | let mut f = FunctionBindgen::new(self, Vec::new(), module, true, false); |
| 784 | abi::deallocate_lists_in_types(f.r#gen.resolve, types, operands, indirect, &mut f); |
| 785 | format!("unsafe {{ {} }}", String::from(f.src)) |
| 786 | } |
| 787 | |
| 788 | fn deallocate_lists_and_own( |
| 789 | &mut self, |
no test coverage detected