Get an iterator of all function declarations
(&self)
| 698 | |
| 699 | /// Get an iterator of all function declarations |
| 700 | pub fn get_functions(&self) -> impl Iterator<Item = (FuncId, &FunctionDeclaration)> { |
| 701 | self.functions.iter() |
| 702 | } |
| 703 | |
| 704 | /// Return whether `name` names a function, rather than a data object. |
| 705 | pub fn is_function(name: &ModuleRelocTarget) -> bool { |