//! Parser-level error types.
//!
//! This module defines errors specific to the CST parsing phase,
//! representing unexpected or missing tokens discovered during parsing.
use crateToken;
/// Errors that occur during CST-level parsing.
///
/// These represent structural issues in the token stream that the parser
/// cannot recover from locally, such as unexpected tokens or missing
/// required tokens.