Struct rustc_parse::lexer::StringReader

source ·
struct StringReader<'psess, 'src> {
    psess: &'psess ParseSess,
    start_pos: BytePos,
    pos: BytePos,
    src: &'src str,
    cursor: Cursor<'src>,
    override_span: Option<Span>,
    nbsp_is_whitespace: bool,
    last_lifetime: Option<Span>,
}

Fields§

§psess: &'psess ParseSess§start_pos: BytePos

Initial position, read-only.

§pos: BytePos

The absolute offset within the source_map of the current character.

§src: &'src str

Source text to tokenize.

§cursor: Cursor<'src>

Cursor for getting lexer tokens.

§override_span: Option<Span>§nbsp_is_whitespace: bool

When a “unknown start of token: \u{a0}” has already been emitted earlier in this file, it’s safe to treat further occurrences of the non-breaking space character as whitespace.

§last_lifetime: Option<Span>

Track the Span for the leading ' of the last lifetime. Used for diagnostics to detect possible typo where " was meant.

Implementations§

source§

impl<'psess, 'src> StringReader<'psess, 'src>

source

pub fn dcx(&self) -> &'psess DiagCtxt

source

fn mk_sp(&self, lo: BytePos, hi: BytePos) -> Span

source

fn next_token(&mut self) -> (Token, bool)

Returns the next token, paired with a bool indicating if the token was preceded by whitespace.

source

fn ident(&self, start: BytePos) -> TokenKind

source

fn lint_unicode_text_flow(&self, start: BytePos)

Detect usages of Unicode codepoints changing the direction of the text on screen and loudly complain about it.

source

fn cook_doc_comment( &self, content_start: BytePos, content: &str, comment_kind: CommentKind, doc_style: DocStyle ) -> TokenKind

source

fn cook_lexer_literal( &self, start: BytePos, end: BytePos, kind: LiteralKind ) -> (LitKind, Symbol)

source

fn src_index(&self, pos: BytePos) -> usize

source

fn str_from(&self, start: BytePos) -> &'src str

Slice of the source text from start up to but excluding self.pos, meaning the slice does not include the character self.ch.

source

fn symbol_from_to(&self, start: BytePos, end: BytePos) -> Symbol

As symbol_from, with an explicit endpoint.

source

fn str_from_to(&self, start: BytePos, end: BytePos) -> &'src str

Slice of the source text spanning from start up to but excluding end.

source

fn str_from_to_end(&self, start: BytePos) -> &'src str

Slice of the source text spanning from start until the end

source

fn report_raw_str_error(&self, start: BytePos, prefix_len: u32) -> !

source

fn report_non_started_raw_string(&self, start: BytePos, bad_char: char) -> !

source

fn report_unterminated_raw_string( &self, start: BytePos, n_hashes: u32, possible_offset: Option<u32>, found_terminators: u32 ) -> !

source

fn report_unterminated_block_comment( &self, start: BytePos, doc_style: Option<DocStyle> )

source

fn report_unknown_prefix(&self, start: BytePos)

source

fn report_too_many_hashes(&self, start: BytePos, num: u32) -> !

source

fn cook_common( &self, kind: LitKind, mode: Mode, start: BytePos, end: BytePos, prefix_len: u32, postfix_len: u32, unescape: fn(_: &str, _: Mode, _: &mut dyn FnMut(Range<usize>, Result<(), EscapeError>)) ) -> (LitKind, Symbol)

source

fn cook_unicode( &self, kind: LitKind, mode: Mode, start: BytePos, end: BytePos, prefix_len: u32, postfix_len: u32 ) -> (LitKind, Symbol)

source

fn cook_mixed( &self, kind: LitKind, mode: Mode, start: BytePos, end: BytePos, prefix_len: u32, postfix_len: u32 ) -> (LitKind, Symbol)

Auto Trait Implementations§

§

impl<'psess, 'src> !DynSend for StringReader<'psess, 'src>

§

impl<'psess, 'src> !DynSync for StringReader<'psess, 'src>

§

impl<'psess, 'src> Freeze for StringReader<'psess, 'src>

§

impl<'psess, 'src> !RefUnwindSafe for StringReader<'psess, 'src>

§

impl<'psess, 'src> !Send for StringReader<'psess, 'src>

§

impl<'psess, 'src> !Sync for StringReader<'psess, 'src>

§

impl<'psess, 'src> Unpin for StringReader<'psess, 'src>

§

impl<'psess, 'src> !UnwindSafe for StringReader<'psess, 'src>

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
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, R> CollectAndApply<T, R> for T

source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

source§

impl<T> ErasedDestructor for T
where T: 'static,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 88 bytes