use crate::store::{InstanceId, StoreOpaque};
use crate::trampoline::create_handle;
use crate::TableType;
use anyhow::Result;
use wasmtime_environ::{EntityIndex, Module};
pub fn create_table(store: &mut StoreOpaque, table: &TableType) -> Result<InstanceId> {
let mut module = Module::new();
let table_plan = wasmtime_environ::TablePlan::for_table(
table.wasmtime_table().clone(),
&store.engine().config().tunables,
);
let table_id = module.table_plans.push(table_plan);
module
.exports
.insert(String::new(), EntityIndex::Table(table_id));
create_handle(module, store, Box::new(()), &[], None)
}