pub type CompileError = LocatedError<CompileErrorType>;

Aliased Type§

struct CompileError {
    pub error: CompileErrorType,
    pub location: Option<SourceLocation>,
    pub source_path: String,
}

Fields§

§error: CompileErrorType§location: Option<SourceLocation>§source_path: String