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

pub struct StringReader<'a> {
    pub span_diagnostic: &'a Handler,
    pub pos: BytePos,
    pub last_pos: BytePos,
    pub col: CharPos,
    pub curr: Option<char>,
    pub filemap: Rc<FileMap>,
    pub peek_tok: Token,
    pub peek_span: Span,
    pub fatal_errs: Vec<DiagnosticBuilder<'a>>,
    // some fields omitted
}
Unstable (rustc_private)

Fields

span_diagnostic: &'a Handler
Unstable (rustc_private)
pos: BytePos
Unstable (rustc_private)

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

last_pos: BytePos
Unstable (rustc_private)

The absolute offset within the codemap of the last character read(curr)

col: CharPos
Unstable (rustc_private)

The column of the next character to read

curr: Option<char>
Unstable (rustc_private)

The last character to be read

filemap: Rc<FileMap>
Unstable (rustc_private)
peek_tok: Token
Unstable (rustc_private)
peek_span: Span
Unstable (rustc_private)
fatal_errs: Vec<DiagnosticBuilder<'a>>
Unstable (rustc_private)

Methods

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

fn new_raw<'b>(span_diagnostic: &'b Handler, filemap: Rc<FileMap>) -> StringReader<'b>

Unstable (rustc_private)

For comments.rs, which hackily pokes into pos and curr

fn new<'b>(span_diagnostic: &'b Handler, filemap: Rc<FileMap>) -> StringReader<'b>

fn curr_is(&self, c: char) -> bool

fn fatal_span(&self, sp: Span, m: &str) -> FatalError

Unstable (rustc_private)

Report a fatal lexical error with a given span.

fn err_span(&self, sp: Span, m: &str)

Unstable (rustc_private)

Report a lexical error with a given span.

fn with_str_from<T, F>(&self, start: BytePos, f: F) -> T where F: FnOnce(&str) -> T

Unstable (rustc_private)

Calls f with a string slice of the source text spanning from start up to but excluding self.last_pos, meaning the slice does not include the character self.curr.

fn name_from(&self, start: BytePos) -> Name

Unstable (rustc_private)

Create a Name from a given offset to the current offset, each adjusted 1 towards each other (assumes that on either side there is a single-byte delimiter).

fn name_from_to(&self, start: BytePos, end: BytePos) -> Name

Unstable (rustc_private)

As name_from, with an explicit endpoint.

fn bump(&mut self)

Unstable (rustc_private)

Advance the StringReader by one character. If a newline is discovered, add it to the FileMap's list of line start offsets.

fn nextch(&self) -> Option<char>

fn nextch_is(&self, c: char) -> bool

fn nextnextch(&self) -> Option<char>

fn nextnextch_is(&self, c: char) -> bool

Trait Implementations

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

fn is_eof(&self) -> bool

fn try_next_token(&mut self) -> Result<TokenAndSpan()>

Unstable (rustc_private)

Return the next token. EFFECT: advances the string_reader.

fn fatal(&self, m: &str) -> FatalError

Report a fatal error with the current span.

fn err(&self, m: &str)

Report a non-fatal error with the current span.

fn emit_fatal_errors(&mut self)

fn peek(&self) -> TokenAndSpan

fn next_token(&mut self) -> TokenAndSpan where Self: Sized

fn unwrap_or_abort(&mut self, res: Result<TokenAndSpan()>) -> TokenAndSpan

fn try_real_token(&mut self) -> Result<TokenAndSpan()>

Get a token the parser cares about.

fn real_token(&mut self) -> TokenAndSpan