//! Parsing utility functions used throughout the parser to make the process of parsing easier.
use ;
/// A [`Result`] returned from an AST node parser.
pub type NodeParserResult<Node, Error = ParserError> = ;
/// An [`Option`] returned from an AST node parser.
pub type NodeParserOption<Node> = ;
/// Type alias used to apease the borrow/lifetime checker complaining about HKTs and stuff.
pub type BoxedParserFn<'src, Output> = ;