Cleanup wasmer bin and webassembly

This commit is contained in:
Brandon Fish
2019-01-19 00:28:41 -06:00
parent 89c5984d47
commit 2f6746655d
4 changed files with 37 additions and 109 deletions

View File

@ -20,7 +20,7 @@ macro_rules! assert_emscripten_output {
let import_object = generate_emscripten_env(&emscripten_globals);
let mut instance = module.instantiate(import_object)
.map_err(|err| format!("Can't instantiate the WebAssembly module: {}", err)).unwrap(); // NOTE: Need to figure what the unwrap is for ??
.map_err(|err| format!("Can't instantiate the WebAssembly module: {:?}", err)).unwrap(); // NOTE: Need to figure what the unwrap is for ??
// start_instance(
// Arc::clone(&module),