Add Dummy marker

This commit is contained in:
Shunsuke Shibayama 2022-12-25 01:50:19 +09:00
parent b8e575ea99
commit 46418987c1
2 changed files with 2 additions and 0 deletions

View file

@ -1185,6 +1185,7 @@ pub struct Dummy(Vec<Expr>);
impl NestedDisplay for Dummy {
fn fmt_nest(&self, f: &mut fmt::Formatter<'_>, level: usize) -> fmt::Result {
writeln!(f, "Dummy:")?;
fmt_lines(self.0.iter(), f, level)
}
}