scarf-parser 0.1.0

A helper crate of scarf for parsing a SystemVerilog source file
Documentation
1
2
3
4
5
6
7
8
9
// =======================================================================
// errors.rs
// =======================================================================
// The type of errors used for AST parsing

use crate::*;
use chumsky::prelude::*;

pub type ParserError<'a> = extra::Err<Rich<'a, Token<'a>>>;