mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 02:41:06 +00:00
Merge pull request #1419 from alexcrichton/init-is-hard
Fix instantiation with a `Module`
This commit is contained in:
commit
76a03adfa6
@ -903,12 +903,12 @@ impl<'a> Context<'a> {
|
|||||||
let ts = Self::ts_for_init_fn(mem.import.is_some());
|
let ts = Self::ts_for_init_fn(mem.import.is_some());
|
||||||
let js = format!(
|
let js = format!(
|
||||||
"\
|
"\
|
||||||
function init(module_or_path{init_memory_arg}) {{
|
function init(module{init_memory_arg}) {{
|
||||||
let result;
|
let result;
|
||||||
const imports = {{ './{module}': __exports }};
|
const imports = {{ './{module}': __exports }};
|
||||||
if (module_or_path instanceof URL || typeof module_or_path === 'string' || module_or_path instanceof Request) {{
|
if (module instanceof URL || typeof module === 'string' || module instanceof Request) {{
|
||||||
{init_memory2}
|
{init_memory2}
|
||||||
const response = fetch(module_or_path);
|
const response = fetch(module);
|
||||||
if (typeof WebAssembly.instantiateStreaming === 'function') {{
|
if (typeof WebAssembly.instantiateStreaming === 'function') {{
|
||||||
result = WebAssembly.instantiateStreaming(response, imports)
|
result = WebAssembly.instantiateStreaming(response, imports)
|
||||||
.catch(e => {{
|
.catch(e => {{
|
||||||
@ -928,9 +928,13 @@ impl<'a> Context<'a> {
|
|||||||
}}
|
}}
|
||||||
}} else {{
|
}} else {{
|
||||||
{init_memory1}
|
{init_memory1}
|
||||||
result = WebAssembly.instantiate(module_or_path, imports)
|
result = WebAssembly.instantiate(module, imports)
|
||||||
.then(instance => {{
|
.then(result => {{
|
||||||
return {{ instance, module: module_or_path }};
|
if (result instanceof WebAssembly.Instance) {{
|
||||||
|
return {{ instance: result, module }};
|
||||||
|
}} else {{
|
||||||
|
return result;
|
||||||
|
}}
|
||||||
}});
|
}});
|
||||||
}}
|
}}
|
||||||
return result.then(({{instance, module}}) => {{
|
return result.then(({{instance, module}}) => {{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user