| 961 | } |
| 962 | |
| 963 | const wasm_extern_t* wasm_func_as_extern_const(const wasm_func_t* func) { |
| 964 | return hide_extern(static_cast<const Extern*>(reveal_func(func))); |
| 965 | } |
| 966 | const wasm_extern_t* wasm_global_as_extern_const(const wasm_global_t* global) { |
| 967 | return hide_extern(static_cast<const Extern*>(reveal_global(global))); |
| 968 | } |
nothing calls this directly
no outgoing calls
no test coverage detected