properly support module imports from within modules.

This commit is contained in:
Mark Thom
2018-04-25 17:11:46 -06:00
parent 1415a5c98c
commit ed9689368d
4 changed files with 18 additions and 4 deletions

View File

@@ -783,3 +783,9 @@ macro_rules! set_code_index {
idx.1 = $mod_name.clone();
}}
}
macro_rules! machine_code_index {
($code_dir:expr, $op_dir:expr) => (
MachineCodeIndex { code_dir: $code_dir, op_dir: $op_dir }
)
}