| 800 | } |
| 801 | |
| 802 | void wasm_callback_env_finalizer(void* env) { |
| 803 | auto t = static_cast<wasm_callback_env_t*>(env); |
| 804 | if (t->finalizer) t->finalizer(t->env); |
| 805 | delete t; |
| 806 | } |
| 807 | |
| 808 | } // extern "C++" |
| 809 |
nothing calls this directly
no outgoing calls
no test coverage detected