fix parser test

This commit is contained in:
nora 2021-12-31 14:23:32 +01:00
parent bc218efe0e
commit 92b40b17ed
2 changed files with 64 additions and 27 deletions

View file

@ -3,7 +3,7 @@
//! It's a handwritten recursive descent parser. It has an internal peekable iterator from where
//! it gets its next tokens. Only a lookahead of one is required.
#[cfg(test_ignore_lol)]
#[cfg(test)]
mod test;
use crate::ast::*;