trying to get filename and linenumber

This commit is contained in:
Yehowshua Immanuel 2022-08-04 13:19:52 -04:00
parent fa25bad391
commit ba9208277b
7 changed files with 200 additions and 83 deletions

View file

@ -84,9 +84,10 @@ pub(super) fn parse_events<'a>(
loop {
let next_word = word_reader.next_word();
// if we've reached the end of the file, then there is obviously
// The following is the only case where eof is not an error.
// If we've reached the end of the file, then there is obviously
// nothing left to do...
if next_word.is_none() {break};
if next_word.is_err() {break};
let (word, cursor) = next_word.unwrap();
let Cursor(Line(_), Word(word_in_line_idx)) = cursor;