| 970 | return hide_extern(static_cast<const Extern*>(reveal_table(table))); |
| 971 | } |
| 972 | const wasm_extern_t* wasm_memory_as_extern_const(const wasm_memory_t* memory) { |
| 973 | return hide_extern(static_cast<const Extern*>(reveal_memory(memory))); |
| 974 | } |
| 975 | |
| 976 | wasm_func_t* wasm_extern_as_func(wasm_extern_t* external) { |
| 977 | return hide_func(external->func()); |
nothing calls this directly
no outgoing calls
no test coverage detected