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>
impl<'cx> ParseCtxt<'cx>
Sourcepub(crate) fn at(&mut self, n: usize) -> (BytePos, Token, BytePos)
pub(crate) fn at(&mut self, n: usize) -> (BytePos, Token, BytePos)
Returns the token (and span) at the requested position.
Sourcepub(crate) fn peek<T: Peek>(&mut self, t: T) -> bool
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.
Sourcepub(crate) fn peek2<T1: Peek, T2: Peek>(&mut self, t1: T1, t2: T2) -> bool
pub(crate) fn peek2<T1: Peek, T2: Peek>(&mut self, t1: T1, t2: T2) -> bool
Looks at the next two tokens
Sourcepub(crate) fn peek3<T1: Peek, T2: Peek, T3: Peek>(
&mut self,
t1: T1,
t2: T2,
t3: T3,
) -> bool
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
Sourcepub(crate) fn peek_binop(&mut self) -> Option<(BinOp, usize)>
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.
Sourcepub(crate) fn advance_by(&mut self, n: usize)
pub(crate) fn advance_by(&mut self, n: usize)
Advances the underlying cursor by the requested number of tokens
Sourcepub(crate) fn advance_if<T: Peek>(&mut self, t: T) -> bool
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.
Sourcepub(crate) fn advance_if2<T1: Peek, T2: Peek>(&mut self, t1: T1, t2: T2) -> bool
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
Sourcepub(crate) fn expect<T: Peek>(&mut self, t: T) -> ParseResult
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.
Sourcepub(crate) fn lookahead1(&mut self) -> Lookahead1<'_, 'cx>
pub(crate) fn lookahead1(&mut self) -> Lookahead1<'_, 'cx>
See documentation for Lookahead1