Fix a __wbindgen_placeholder__ module leaking through

With #1267 now fixed looks like we had an accidental regression sneak
through in the meantime!
This commit is contained in:
Alex Crichton 2019-02-28 07:32:30 -08:00
parent cb432be5df
commit c4c0fea05e

View File

@ -615,6 +615,15 @@ impl<'a> Context<'a> {
if self.config.emit_start {
self.add_start_function()?;
has_start_function = self.unstart_start_function();
// In the "we're pretending to be an ES module use case if we've got
// a start function then we use an injected shim to actually execute
// the real start function on the next tick of the microtask queue
// (explained above)
if !self.config.no_modules && has_start_function {
self.inject_start_shim();
}
}
self.export_table()?;
@ -786,14 +795,6 @@ impl<'a> Context<'a> {
},
)
} else {
// In the "we're pretending to be an ES module use case if we've got
// a start function then we use an injected shim to actually execute
// the real start function on the next tick of the microtask queue
// (explained above)
if has_start_function {
self.inject_start_shim();
}
let import_wasm = if self.globals.len() == 0 {
String::new()
} else if self.use_node_require() {