This commit is contained in:
2026-04-17 01:49:43 -04:00
parent e5ae506a84
commit 2f91e454dd
16 changed files with 268 additions and 401 deletions
-8
View File
@@ -1,5 +1,3 @@
use crate::parser::{DisplayCtx, FmtNode};
use super::Token;
#[derive(PartialEq)]
@@ -26,9 +24,3 @@ impl std::fmt::Display for Lit {
}
}
}
impl FmtNode for Lit {
fn fmt(&self, f: &mut std::fmt::Formatter, _: DisplayCtx) -> std::fmt::Result {
write!(f, "{self}")
}
}