(id: FuncId)
| 79 | /// Function identifiers are namespace 0 in `ir::ExternalName` |
| 80 | impl From<FuncId> for ModuleRelocTarget { |
| 81 | fn from(id: FuncId) -> Self { |
| 82 | Self::User { |
| 83 | namespace: 0, |
| 84 | index: id.0, |
| 85 | } |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | impl FuncId { |
nothing calls this directly
no test coverage detected