(
runtime: &TokioRuntime,
engine: &Engine,
module_cache: &Arc<SharedCache>,
library: &Path,
artifact_name: &'static str,
label: &str,
)
| 2594 | } |
| 2595 | |
| 2596 | fn seed_side_module_cache( |
| 2597 | runtime: &TokioRuntime, |
| 2598 | engine: &Engine, |
| 2599 | module_cache: &Arc<SharedCache>, |
| 2600 | library: &Path, |
| 2601 | artifact_name: &'static str, |
| 2602 | label: &str, |
| 2603 | ) -> Result<()> { |
| 2604 | seed_wasix_module_cache(runtime, engine, module_cache, library, artifact_name, label) |
| 2605 | } |
| 2606 | |
| 2607 | fn seed_wasix_module_cache( |
| 2608 | runtime: &TokioRuntime, |
no test coverage detected