Update emscripten to latest changes

This commit is contained in:
Steve Akinyemi
2019-01-17 19:55:25 +01:00
parent 16a67c996a
commit 0bf6ce49f6
9 changed files with 445 additions and 457 deletions

View File

@ -39,7 +39,7 @@ pub struct ModuleInner {
pub sig_registry: SigRegistry,
}
pub struct Module(Rc<ModuleInner>);
pub struct Module(pub Rc<ModuleInner>);
impl Module {
pub(crate) fn new(inner: Rc<ModuleInner>) -> Self {