[][src]Struct syntax::parse::lexer::StringReader

pub struct StringReader<'a> {
    pub sess: &'a ParseSess,
    pub next_pos: BytePos,
    pub pos: BytePos,
    pub ch: Option<char>,
    pub source_file: Lrc<SourceFile>,
    pub end_src_index: usize,
    // some fields omitted
}

Fields

sess: &'a ParseSessnext_pos: BytePos

The absolute offset within the source_map of the next character to read

pos: BytePos

The absolute offset within the source_map of the current character

ch: Option<char>

The current character (which has been read from self.pos)

source_file: Lrc<SourceFile>end_src_index: usize

Stop reading src at this index.

Methods

impl<'a> StringReader<'a>[src]

pub fn try_next_token(&mut self) -> Result<TokenAndSpan, ()>[src]

Returns the next token. EFFECT: advances the string_reader.

pub fn peek_delimited(&self, from_ch: char, to_ch: char) -> Option<String>[src]

Immutably extract string if found at current position with given delimiters

pub fn real_token(&mut self) -> TokenAndSpan[src]

pub fn emit_fatal_errors(&mut self)[src]

pub fn buffer_fatal_errors(&mut self) -> Vec<Diagnostic>[src]

pub fn peek(&self) -> TokenAndSpan[src]

pub fn new(
    sess: &'a ParseSess,
    source_file: Lrc<SourceFile>,
    override_span: Option<Span>
) -> Self
[src]

pub fn new_or_buffered_errs(
    sess: &'a ParseSess,
    source_file: Lrc<SourceFile>,
    override_span: Option<Span>
) -> Result<Self, Vec<Diagnostic>>
[src]

pub fn retokenize(sess: &'a ParseSess, span: Span) -> Self[src]

Auto Trait Implementations

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

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

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<E> SpecializationError for E[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]