| 874 | WASM_DEFINE_REF(table, Table) |
| 875 | |
| 876 | wasm_table_t* wasm_table_new( |
| 877 | wasm_store_t* store, const wasm_tabletype_t* type, wasm_ref_t* ref |
| 878 | ) { |
| 879 | return release_table(Table::make(store, type, ref)); |
| 880 | } |
| 881 | |
| 882 | wasm_tabletype_t* wasm_table_type(const wasm_table_t* table) { |
| 883 | return release_tabletype(table->type()); |