incpa 0.0.3

An INCremental PArser composition crate.
Documentation
1
2
3
4
5
6
7
8
9
10
/// "Universal" errors that any parser may encounter
#[derive(Copy, Clone, Debug, thiserror::Error)]
pub enum BaseParserError {
    /// The parser expects more input by the end of input
    #[error("expected more input")]
    ExpectedMoreInput,
    /// The parser encountered unexpected input
    #[error("encountered unexpected input")]
    UnexpectedInput,
}