(link: &WasmLinkMetadataOut, name: &str)
| 7980 | } |
| 7981 | |
| 7982 | fn has_wasm_export(link: &WasmLinkMetadataOut, name: &str) -> bool { |
| 7983 | link.exports |
| 7984 | .iter() |
| 7985 | .any(|export| export.name == name || export.name == format!("_{name}")) |
| 7986 | } |
| 7987 | |
| 7988 | fn build_asset_spine( |
| 7989 | _manifest: &SourcesManifest, |
no test coverage detected