renamed to iterator

This commit is contained in:
hendrik 2024-08-11 17:35:44 +02:00
parent d6f0fc0fda
commit f62a057bdc
5 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -14,4 +14,5 @@ target/
test.lox
other.lox
.idea/
**/*.xml

View File

@ -21,4 +21,4 @@ edition = "2021"
[dependencies]
anyhow = "1.0.68" # error handling
bytes = "1.3.0" # helps manage buffers
thiserror = "1.0.38" # error handling
thiserror = "1.0.38" # error handlinga

View File

@ -1,2 +1,2 @@
pub mod parser;
pub mod tester;
pub mod token_iterator;

View File

@ -8,7 +8,7 @@ use crate::{
},
};
use super::tester::TokenIterator;
use super::token_iterator::TokenIterator;
pub struct Parser<'a> {
iter: Rc<RefCell<TokenIterator<'a>>>,