Get the `FunctionDeclaration` for the function named by `name`.
(&self, func_id: FuncId)
| 715 | |
| 716 | /// Get the `FunctionDeclaration` for the function named by `name`. |
| 717 | pub fn get_function_decl(&self, func_id: FuncId) -> &FunctionDeclaration { |
| 718 | &self.functions[func_id] |
| 719 | } |
| 720 | |
| 721 | /// Get an iterator of all data declarations |
| 722 | pub fn get_data_objects(&self) -> impl Iterator<Item = (DataId, &DataDeclaration)> { |
no outgoing calls
no test coverage detected