Archived
Archive Rust bootstrap — El compiler is now self-hosting
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
//! Error types for el-fmt.
|
||||
|
||||
use thiserror::Error;
|
||||
|
||||
#[derive(Debug, Error)]
|
||||
pub enum FmtError {
|
||||
#[error("lex error: {0}")]
|
||||
Lex(String),
|
||||
#[error("parse error: {0}")]
|
||||
Parse(String),
|
||||
}
|
||||
Reference in New Issue
Block a user