cl_parser::parser

Struct Parser

Source
pub struct Parser<'t> { /* private fields */ }
Expand description

Parses a sequence of Tokens into an AST

Implementations§

Source§

impl<'t> Parser<'t>

Basic parser functionality

Source

pub fn new(lexer: Lexer<'t>) -> Self

Source

pub fn loc(&self) -> Loc

Gets the location of the last consumed Token

Source

pub fn parse<P: Parse<'t>>(&mut self) -> PResult<P>

Attempts to parse anything that implements the Parse trait

Source

pub fn error(&self, reason: ErrorKind, while_parsing: Parsing) -> Error

Constructs an Error

Source

pub fn peek(&mut self, while_parsing: Parsing) -> PResult<&Token>

Looks ahead one token

Stores the token in an internal lookahead buffer

Source

pub fn peek_kind(&mut self, while_parsing: Parsing) -> PResult<TokenKind>

Looks ahead at the next Token’s TokenKind

Source

pub fn consume_peeked(&mut self) -> Option<Token>

Consumes a previously peeked Token, returning it. Returns None when there is no peeked token.

This avoids the overhead of constructing an Error

Source

pub fn consume(&mut self, while_parsing: Parsing) -> PResult<Token>

Consumes one Token

Source

pub fn match_type( &mut self, want: TokenKind, while_parsing: Parsing, ) -> PResult<Token>

Consumes the next Token if it matches the pattern TokenKind

Trait Implementations§

Source§

impl<'t> Debug for Parser<'t>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'t> Freeze for Parser<'t>

§

impl<'t> RefUnwindSafe for Parser<'t>

§

impl<'t> Send for Parser<'t>

§

impl<'t> Sync for Parser<'t>

§

impl<'t> Unpin for Parser<'t>

§

impl<'t> UnwindSafe for Parser<'t>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.