Get the module identifier for a given name, if that name has been declared.
(&self, name: &str)
| 831 | /// Get the module identifier for a given name, if that name |
| 832 | /// has been declared. |
| 833 | fn get_name(&self, name: &str) -> Option<FuncOrDataId> { |
| 834 | self.declarations().get_name(name) |
| 835 | } |
| 836 | |
| 837 | /// Return the target information needed by frontends to produce Cranelift IR |
| 838 | /// for the current target. |
nothing calls this directly
no test coverage detected