Chapter 10 function parsing refactor, changed lexer.rs -> _lexer.rs and parser.rs -> _parser.rs

This commit is contained in:
Moritz Gmeiner 2023-01-25 19:59:40 +01:00
commit cbe837025e
4 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
mod lexer;
mod _lexer;
mod token;
pub use lexer::scan_tokens;
pub use _lexer::scan_tokens;
pub use token::{Token, TokenType};