mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-12 19:18:24 +00:00
5 lines
137 B
Rust
5 lines
137 B
Rust
use crate::{lexer::LexicalError, tokens::Token};
|
|
use lalrpop_util::ParseError;
|
|
|
|
pub type Error = ParseError<usize, Token, LexicalError>;
|