scarf_parser/parser/
errors.rs

1// =======================================================================
2// errors.rs
3// =======================================================================
4// The type of errors used for AST parsing
5
6use crate::*;
7use chumsky::prelude::*;
8
9pub type ParserError<'a> = extra::Err<Rich<'a, Token<'a>>>;