Struct rustc_ap_rustc_span::source_map::SourceMap[][src]

pub struct SourceMap { /* fields omitted */ }

Implementations

Loads source file as a binary blob.

Unlike load_file, guarantees that no normalization like BOM-removal takes place.

Creates a new SourceFile. If a file already exists in the SourceMap with the same ID, that file is returned unmodified.

Allocates a new SourceFile representing a source file from an external crate. The source code of such an “imported SourceFile” is not available, but we still know enough to generate accurate debuginfo location information for things inlined from other crates.

Return the SourceFile that contains the given BytePos

Looks up source information about a BytePos.

Format the span location suitable for embedding in build artifacts

Format the span location to be printed in diagnostics. Must not be emitted to build artifacts as this may leak local file paths. Use span_to_embeddable_string for string suitable for embedding.

Returns the source snippet as String corresponding to the given Span.

Returns the source snippet as String before the given Span.

Extends the given Span to just after the previous occurrence of c. Return the same span if no character could be found or if an error occurred while retrieving the code snippet.

Extends the given Span to just after the previous occurrence of pat when surrounded by whitespace. Returns the same span if no character could be found or if an error occurred while retrieving the code snippet.

Returns the source snippet as String after the given Span.

Extends the given Span to just after the next occurrence of c.

Given a Span, tries to get a shorter span ending before the first occurrence of char c.

Given a Span, tries to get a shorter span ending just after the first occurrence of char c.

Given a Span, gets a new Span covering the first token and all its trailing whitespace or the original Span.

If sp points to "let mut x", then a span pointing at "let " will be returned.

Given a Span, gets a new Span covering the first token without its trailing whitespace or the original Span in case of error.

If sp points to "let mut x", then a span pointing at "let" will be returned.

Given a Span, gets a shorter one until predicate yields false.

Given a Span, return a span ending in the closest {. This is useful when you have a Span enclosing a whole item but we need to point at only the head (usually the first line) of that item.

Only suitable for diagnostics.

Returns a new span representing just the first character of the given span.

Returns a new span representing just the last character of this span.

Returns a new span representing the next character after the end-point of this span.

For a global BytePos, computes the local offset within the containing SourceFile.

Takes the span of a type parameter in a function signature and try to generate a span for the function name (with generics) and a new snippet for this span with the pointed type parameter as a new local type parameter.

For instance:

// Given span
fn my_function(param: T)
//                    ^ Original span

// Result
fn my_function(param: T)
// ^^^^^^^^^^^ Generated span with snippet `my_function<T>`

Attention: The method used is very fragile since it essentially duplicates the work of the parser. If you need to use this function or something similar, please consider updating the SourceMap functions and this function to something more robust.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

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

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.