do not add expansions behind module boundaries until the modules are added

This commit is contained in:
Mark Thom
2019-01-03 19:43:50 -07:00
parent 2f2f6314d8
commit 36fdc8e822
6 changed files with 320 additions and 91 deletions

View File

@@ -248,3 +248,11 @@ macro_rules! get_level_and_unify {
Line::Cut(CutInstruction::GetLevelAndUnify($r))
)
}
macro_rules! discard_result {
($f: expr) => (
match $f {
_ => ()
}
)
}