(e: &wasm_extern_t)
| 41 | |
| 42 | #[unsafe(no_mangle)] |
| 43 | pub extern "C" fn wasm_extern_as_func_const(e: &wasm_extern_t) -> Option<&wasm_func_t> { |
| 44 | wasm_extern_as_func(e) |
| 45 | } |
| 46 | |
| 47 | #[unsafe(no_mangle)] |
| 48 | pub extern "C" fn wasm_extern_as_global(e: &wasm_extern_t) -> Option<&wasm_global_t> { |
nothing calls this directly
no test coverage detected