- work on new world - add file db - source_file parsing - locs - fix some test stuff
10 lines
232 B
Rust
10 lines
232 B
Rust
use std::path::PathBuf;
|
|
|
|
use crate::{ast::ParseError, lst_parser::error::SyntaxError};
|
|
|
|
use super::files::{FileId, Loc, OpenFileError};
|
|
|
|
pub enum Error {
|
|
Syntax(Loc<ParseError>, SyntaxError),
|
|
OpenFileError(OpenFileError),
|
|
}
|