Add Expr::Dummy

This commit is contained in:
Shunsuke Shibayama 2022-12-11 18:28:20 +09:00
parent 3841b9f676
commit e1c8bb415b
9 changed files with 34 additions and 9 deletions

View file

@ -158,6 +158,7 @@ impl<'a> Linker<'a> {
}
}
Expr::Import(_) => unreachable!(),
Expr::Dummy(_) => {}
}
}
@ -279,6 +280,7 @@ impl<'a> Linker<'a> {
}
}
Expr::Import(_) => unreachable!(),
Expr::Dummy(_) => {}
}
}