Struct ParseCtxt

Source
pub(crate) struct ParseCtxt<'a> {
    pub(crate) ctx: SyntaxContext,
    pub(crate) parent: Option<LocalDefId>,
    pub(crate) tokens: Cursor<'a>,
    pub(crate) sess: &'a mut ParseSess,
}

Fields§

§ctx: SyntaxContext§parent: Option<LocalDefId>§tokens: Cursor<'a>§sess: &'a mut ParseSess

Implementations§

Source§

impl<'cx> ParseCtxt<'cx>

Source

pub(crate) fn at(&mut self, n: usize) -> (BytePos, Token, BytePos)

Returns the token (and span) at the requested position.

Source

pub(crate) fn peek<T: Peek>(&mut self, t: T) -> bool

Looks at the next token in the underlying cursor to determine whether it matches the requested type of token. Does not advance the position of the cursor.

Source

pub(crate) fn peek2<T1: Peek, T2: Peek>(&mut self, t1: T1, t2: T2) -> bool

Looks at the next two tokens

Source

pub(crate) fn peek3<T1: Peek, T2: Peek, T3: Peek>( &mut self, t1: T1, t2: T2, t3: T3, ) -> bool

Looks at the next three tokens

Source

pub(crate) fn peek_binop(&mut self) -> Option<(BinOp, usize)>

Looks whether the next token matches a binary operation. In case of a match, returns the corresponding binary operation and its size in number of tokens. This function doesn’t advance the position of the underlying cursor.

Source

pub(crate) fn advance(&mut self)

Advances the underlying cursor to the next token

Source

pub(crate) fn advance_by(&mut self, n: usize)

Advances the underlying cursor by the requested number of tokens

Source

pub(crate) fn advance_if<T: Peek>(&mut self, t: T) -> bool

Looks at the next token and advances the cursor if it matches the requested rule. Returns true if there was a match.

Source

pub(crate) fn advance_if2<T1: Peek, T2: Peek>(&mut self, t1: T1, t2: T2) -> bool

Looks at the next two tokens advacing the cursor if there’s a match on both of them

Source

pub(crate) fn expect<T: Peek>(&mut self, t: T) -> ParseResult

If the next token matches the requested type of token advances the cursor, otherwise returns an unexpected token error.

Source

pub(crate) fn lookahead1(&mut self) -> Lookahead1<'_, 'cx>

See documentation for Lookahead1

Source§

impl<'a> ParseCtxt<'a>

Source

pub(crate) fn new( sess: &'a mut ParseSess, tokens: &'a TokenStream, span: Span, ) -> Self

Source

pub(crate) fn next_node_id(&mut self) -> NodeId

Source

pub(crate) fn mk_span(&self, lo: BytePos, hi: BytePos) -> Span

Source

pub(crate) fn lo(&self) -> BytePos

Source

pub(crate) fn hi(&self) -> BytePos

Source

pub(crate) fn unexpected_token( &mut self, expected: Vec<&'static str>, ) -> ParseError

Source

pub(crate) fn cannot_be_chained(&self, lo: BytePos, hi: BytePos) -> ParseError

Auto Trait Implementations§

§

impl<'a> Freeze for ParseCtxt<'a>

§

impl<'a> !RefUnwindSafe for ParseCtxt<'a>

§

impl<'a> !Send for ParseCtxt<'a>

§

impl<'a> !Sync for ParseCtxt<'a>

§

impl<'a> Unpin for ParseCtxt<'a>

§

impl<'a> !UnwindSafe for ParseCtxt<'a>

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.