Combine the error types.

This commit is contained in:
Tom Alexander
2023-04-21 18:36:01 -04:00
parent 04dfffc000
commit a1724dae52
23 changed files with 57 additions and 68 deletions

View File

@@ -1,3 +1,6 @@
use crate::error::CustomError;
use crate::error::MyError;
use crate::error::Res;
use crate::parser::comment::comment;
use crate::parser::element_parser::element;
use crate::parser::exiting::ExitClass;
@@ -25,7 +28,6 @@ use nom::multi::many_till;
use nom::sequence::tuple;
use super::element::Element;
use super::error::Res;
use super::object::Object;
use super::parser_with_context::parser_with_context;
use super::source::Source;