Move out CompileError to core as generic form

This commit is contained in:
Jeong YunWon 2022-08-23 01:30:00 +09:00
parent 5b50c547d6
commit 4724cc63f7
4 changed files with 52 additions and 55 deletions

View file

@ -7,6 +7,6 @@ mod location;
mod mode;
pub use bytecode::*;
pub use error::BaseError;
pub use error::{BaseError, CompileError};
pub use location::Location;
pub use mode::Mode;