Separate out the element parsers.

This commit is contained in:
Tom Alexander
2023-04-21 16:10:56 -04:00
parent 54b02f4e74
commit d780981baf
10 changed files with 55 additions and 54 deletions

View File

@@ -1,7 +1,7 @@
use super::error::Res;
use super::util::WORD_CONSTITUENT_CHARACTERS;
use super::Context;
use crate::parser::element::element;
use crate::parser::element_parser::element;
use crate::parser::error::CustomError;
use crate::parser::error::MyError;
use crate::parser::exiting::ExitClass;