mq-lang 0.6.0

Core language implementation for mq query language
Documentation
use thiserror::Error;

use crate::{Shared, Token, selector};

#[derive(Error, Debug, PartialEq, Clone, PartialOrd, Eq, Ord)]
pub enum ParseError {
    #[error("Unexpected token `{0}`")]
    UnexpectedToken(Shared<Token>),
    #[error("Unexpected EOF detected")]
    UnexpectedEOFDetected,
    #[error("Insufficient tokens `{0}`")]
    InsufficientTokens(Shared<Token>),
    #[error("Expected a closing bracket `]` but got `{0}` delimiter")]
    ExpectedClosingBracket(Shared<Token>),
    #[error(transparent)]
    UnknownSelector(selector::UnknownSelector),
    #[error("Unexpected `end` keyword — no open block to close")]
    UnmatchedEnd(Shared<Token>),
}