Struct Parser

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

The core parser with dynamic rules

Implementations§

Source§

impl<'src> Parser<'src>

Source

pub fn parse(&mut self) -> Result<Vec<Expr<'src>>, ParseError>

Parse a series of statements

Source

pub fn statement(&mut self) -> Result<Expr<'src>, ParseError>

Parse a singular statement

Source§

impl<'tok> Parser<'tok>

Source

pub fn from_rng<RNG: RngCore>(rng: &mut RNG) -> Self

Creates a new parser from RNG

Source

pub fn with_tokens(self, tokens: &'tok [Token<'tok>]) -> Self

Assigns a token stream to the parser

Source

pub fn peek(&self) -> TokenTag<'tok>

Peeks at the current token

Source

pub fn peek_token(&self) -> Token<'tok>

Peeks at the current token

Source

pub fn peek_back(&self) -> TokenTag<'tok>

Peeks at the previous token, does not advance the index

Source

pub fn advance(&mut self) -> TokenTag<'tok>

Advances forward and returns the previous token

Source

pub fn consume(&mut self, token: &TokenTag<'_>) -> Result<(), ParseError>

Consumes the current token assuming it’s the provided Token, failing if not

Source

pub fn consume_end(&mut self) -> Result<(), ParseError>

Consumes the proper end for the tree

Source

pub fn consume_close_paren_if_necessary(&mut self) -> Result<(), ParseError>

If the current rules require parenthesis, consume ’em

Source

pub fn consume_open_paren_if_necessary(&mut self) -> Result<(), ParseError>

If the current rules require parenthesis, consume ’em

Auto Trait Implementations§

§

impl<'tok> Freeze for Parser<'tok>

§

impl<'tok> RefUnwindSafe for Parser<'tok>

§

impl<'tok> Send for Parser<'tok>

§

impl<'tok> Sync for Parser<'tok>

§

impl<'tok> Unpin for Parser<'tok>

§

impl<'tok> UnwindSafe for Parser<'tok>

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V