pub struct Cursor<'t> {
stack: Vec<Frame<'t>>,
symbs: Symbols,
tokens: VecDeque<(BytePos, Token, BytePos)>,
hi: BytePos,
}
Fields§
§stack: Vec<Frame<'t>>
§symbs: Symbols
§tokens: VecDeque<(BytePos, Token, BytePos)>
§hi: BytePos
Implementations§
Source§impl<'t> Cursor<'t>
impl<'t> Cursor<'t>
pub(crate) fn new(stream: &'t TokenStream, offset: BytePos) -> Self
pub fn at(&mut self, pos: usize) -> (BytePos, Token, BytePos)
pub fn debug(&mut self, size: usize) -> String
pub fn advance(&mut self)
pub fn advance_by(&mut self, n: usize)
Sourcepub fn hi(&self) -> BytePos
pub fn hi(&self) -> BytePos
Returns the highest byte position the cursor has yielded. You could also think of this as the ending position of the last yielded token.
fn map_token(&mut self, token: &Token)
fn fetch_tokens(&mut self) -> bool
Auto Trait Implementations§
impl<'t> Freeze for Cursor<'t>
impl<'t> !RefUnwindSafe for Cursor<'t>
impl<'t> !Send for Cursor<'t>
impl<'t> !Sync for Cursor<'t>
impl<'t> Unpin for Cursor<'t>
impl<'t> !UnwindSafe for Cursor<'t>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more