add '$remove_module_exports' to loader.rs

This commit is contained in:
Mark Thom
2021-02-18 14:07:57 -07:00
parent c8a47d839a
commit d69b7f41f2
7 changed files with 138 additions and 8 deletions

View File

@@ -510,6 +510,9 @@ impl Machine {
REPLCodePtr::FlushTermQueue => {
self.flush_term_queue();
}
REPLCodePtr::RemoveModuleExports => {
self.remove_module_exports();
}
}
self.machine_st.p = CodePtr::Local(p);