| 884 | } |
| 885 | |
| 886 | wasm_ref_t* wasm_table_get(const wasm_table_t* table, wasm_table_size_t index) { |
| 887 | return release_ref(table->get(index)); |
| 888 | } |
| 889 | |
| 890 | bool wasm_table_set( |
| 891 | wasm_table_t* table, wasm_table_size_t index, wasm_ref_t* ref |
no test coverage detected