Merge branch 'feature/vm_refactor' into feature/vm_refactor_errors

This commit is contained in:
Lachlan Sneff
2019-01-18 09:20:55 -08:00
committed by GitHub
39 changed files with 1809 additions and 1387 deletions

View File

@ -40,7 +40,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 {