Move out CompileError to core as generic form

This commit is contained in:
Jeong YunWon 2022-08-23 01:30:00 +09:00
parent e8230efe1a
commit 42b95a9a95
3 changed files with 31 additions and 1 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;