(
&self,
)
| 136 | } |
| 137 | |
| 138 | pub fn functions( |
| 139 | &self, |
| 140 | ) -> impl DoubleEndedIterator<Item = FunctionDefinitionView<'a, T>> + Send { |
| 141 | let module = self.module; |
| 142 | module |
| 143 | .function_defs() |
| 144 | .iter() |
| 145 | .map(move |function_def| FunctionDefinitionView::new(module, function_def)) |
| 146 | } |
| 147 | |
| 148 | pub fn function_definition( |
| 149 | &self, |
nothing calls this directly
no test coverage detected