Fix tests too

This commit is contained in:
greg 2018-02-23 01:59:53 -08:00
parent d423e88845
commit b2319f0971
1 changed files with 1 additions and 0 deletions

View File

@ -220,6 +220,7 @@ fn handle_operator(c: char, input: &mut CharIter) -> TokenType {
#[cfg(test)]
mod schala_tokenizer_tests {
use super::*;
use super::Kw::*;
macro_rules! digit { ($ident:expr) => { DigitGroup(Rc::new($ident.to_string())) } }
macro_rules! ident { ($ident:expr) => { Identifier(Rc::new($ident.to_string())) } }