(module: &wasm_module_t, out: &mut wasm_exporttype_vec_t)
| 79 | |
| 80 | #[unsafe(no_mangle)] |
| 81 | pub extern "C" fn wasm_module_exports(module: &wasm_module_t, out: &mut wasm_exporttype_vec_t) { |
| 82 | fill_exports(&module.module, out); |
| 83 | } |
| 84 | |
| 85 | #[unsafe(no_mangle)] |
| 86 | pub extern "C" fn wasm_module_imports(module: &wasm_module_t, out: &mut wasm_importtype_vec_t) { |
nothing calls this directly
no test coverage detected