| 734 | } |
| 735 | |
| 736 | wasm_module_t* wasm_module_new( |
| 737 | wasm_store_t* store, const wasm_byte_vec_t* binary |
| 738 | ) { |
| 739 | auto binary_ = borrow_byte_vec(binary); |
| 740 | return release_module(Module::make(store, binary_.it)); |
| 741 | } |
| 742 | |
| 743 | |
| 744 | void wasm_module_imports( |
no outgoing calls
no test coverage detected