Remove some debugging code

This commit is contained in:
Emi Simpson 2022-04-24 23:15:41 -04:00
parent d9385ed1c3
commit 9c7ef81044
Signed by: Emi
GPG Key ID: A12F2C2FFDC3D847
1 changed files with 0 additions and 1 deletions

View File

@ -28,7 +28,6 @@ pub trait Parsable: Sized {
fn parse(l: &mut WrappedLexer) -> Result<Self, ParseError>;
fn matches(l: &Token) -> bool {
let (expected, can_zero_width) = Self::expected();
eprintln!("{expected:?} {l:?}");
can_zero_width || expected.contains(&discriminant(l))
}
}