[−][src]Struct rustc_ap_rustc_span::source_map::SourceMap
Methods
impl SourceMap
[src]
pub fn new(path_mapping: FilePathMapping) -> SourceMap
[src]
pub fn with_file_loader(
file_loader: Box<dyn FileLoader + Sync + Send>,
path_mapping: FilePathMapping
) -> SourceMap
[src]
file_loader: Box<dyn FileLoader + Sync + Send>,
path_mapping: FilePathMapping
) -> SourceMap
pub fn path_mapping(&self) -> &FilePathMapping
[src]
pub fn file_exists(&self, path: &Path) -> bool
[src]
pub fn load_file(&self, path: &Path) -> Result<Lrc<SourceFile>>
[src]
pub fn load_binary_file(&self, path: &Path) -> Result<Vec<u8>>
[src]
Loads source file as a binary blob.
Unlike load_file
, guarantees that no normalization like BOM-removal
takes place.
pub fn files(&self) -> MappedLockGuard<Vec<Lrc<SourceFile>>>
[src]
pub fn source_file_by_stable_id(
&self,
stable_id: StableSourceFileId
) -> Option<Lrc<SourceFile>>
[src]
&self,
stable_id: StableSourceFileId
) -> Option<Lrc<SourceFile>>
pub fn new_source_file(
&self,
filename: FileName,
src: String
) -> Lrc<SourceFile>
[src]
&self,
filename: FileName,
src: String
) -> Lrc<SourceFile>
Creates a new SourceFile
.
If a file already exists in the SourceMap
with the same ID, that file is returned
unmodified.
pub fn new_imported_source_file(
&self,
filename: FileName,
name_was_remapped: bool,
crate_of_origin: u32,
src_hash: u128,
name_hash: u128,
source_len: usize,
file_local_lines: Vec<BytePos>,
file_local_multibyte_chars: Vec<MultiByteChar>,
file_local_non_narrow_chars: Vec<NonNarrowChar>,
file_local_normalized_pos: Vec<NormalizedPos>
) -> Lrc<SourceFile>
[src]
&self,
filename: FileName,
name_was_remapped: bool,
crate_of_origin: u32,
src_hash: u128,
name_hash: u128,
source_len: usize,
file_local_lines: Vec<BytePos>,
file_local_multibyte_chars: Vec<MultiByteChar>,
file_local_non_narrow_chars: Vec<NonNarrowChar>,
file_local_normalized_pos: Vec<NormalizedPos>
) -> Lrc<SourceFile>
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.
pub fn mk_substr_filename(&self, sp: Span) -> String
[src]
pub fn doctest_offset_line(&self, file: &FileName, orig: usize) -> usize
[src]
pub fn lookup_char_pos(&self, pos: BytePos) -> Loc
[src]
Looks up source information about a BytePos
.
pub fn lookup_line(
&self,
pos: BytePos
) -> Result<SourceFileAndLine, Lrc<SourceFile>>
[src]
&self,
pos: BytePos
) -> Result<SourceFileAndLine, Lrc<SourceFile>>
pub fn merge_spans(&self, sp_lhs: Span, sp_rhs: Span) -> Option<Span>
[src]
Returns Some(span)
, a union of the LHS and RHS span. The LHS must precede the RHS. If
there are gaps between LHS and RHS, the resulting union will cross these gaps.
For this to work,
- the syntax contexts of both spans much match,
- the LHS span needs to end on the same line the RHS span begins,
- the LHS span must start at or before the RHS span.
pub fn span_to_string(&self, sp: Span) -> String
[src]
pub fn span_to_filename(&self, sp: Span) -> FileName
[src]
pub fn span_to_unmapped_path(&self, sp: Span) -> FileName
[src]
pub fn is_multiline(&self, sp: Span) -> bool
[src]
pub fn is_valid_span(&self, sp: Span) -> Result<(Loc, Loc), SpanLinesError>
[src]
pub fn span_to_lines(&self, sp: Span) -> FileLinesResult
[src]
pub fn span_to_snippet(&self, sp: Span) -> Result<String, SpanSnippetError>
[src]
Returns the source snippet as String
corresponding to the given Span
.
pub fn span_to_margin(&self, sp: Span) -> Option<usize>
[src]
pub fn span_to_prev_source(&self, sp: Span) -> Result<String, SpanSnippetError>
[src]
Returns the source snippet as String
before the given Span
.
pub fn span_extend_to_prev_char(&self, sp: Span, c: char) -> Span
[src]
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.
pub fn span_extend_to_prev_str(
&self,
sp: Span,
pat: &str,
accept_newlines: bool
) -> Span
[src]
&self,
sp: Span,
pat: &str,
accept_newlines: bool
) -> Span
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.
pub fn span_until_char(&self, sp: Span, c: char) -> Span
[src]
Given a Span
, tries to get a shorter span ending before the first occurrence of char
c
.
pub fn span_through_char(&self, sp: Span, c: char) -> Span
[src]
Given a Span
, tries to get a shorter span ending just after the first occurrence of char
c
.
pub fn span_until_non_whitespace(&self, sp: Span) -> Span
[src]
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.
pub fn span_until_whitespace(&self, sp: Span) -> Span
[src]
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.
pub fn span_take_while<P>(&self, sp: Span, predicate: P) -> Span where
P: for<'r> FnMut(&'r char) -> bool,
[src]
P: for<'r> FnMut(&'r char) -> bool,
Given a Span
, gets a shorter one until predicate
yields false
.
pub fn def_span(&self, sp: Span) -> Span
[src]
pub fn start_point(&self, sp: Span) -> Span
[src]
Returns a new span representing just the start point of this span.
pub fn end_point(&self, sp: Span) -> Span
[src]
Returns a new span representing just the end point of this span.
pub fn next_point(&self, sp: Span) -> Span
[src]
Returns a new span representing the next character after the end-point of this span.
pub fn get_source_file(&self, filename: &FileName) -> Option<Lrc<SourceFile>>
[src]
pub fn lookup_byte_offset(&self, bpos: BytePos) -> SourceFileAndBytePos
[src]
For a global BytePos
, computes the local offset within the containing SourceFile
.
pub fn bytepos_to_file_charpos(&self, bpos: BytePos) -> CharPos
[src]
Converts an absolute BytePos
to a CharPos
relative to the SourceFile
.
pub fn lookup_source_file_idx(&self, pos: BytePos) -> usize
[src]
pub fn count_lines(&self) -> usize
[src]
pub fn generate_fn_name_span(&self, span: Span) -> Option<Span>
[src]
pub fn generate_local_type_param_snippet(
&self,
span: Span
) -> Option<(Span, String)>
[src]
&self,
span: Span
) -> Option<(Span, String)>
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.
pub fn ensure_source_file_source_present(
&self,
source_file: Lrc<SourceFile>
) -> bool
[src]
&self,
source_file: Lrc<SourceFile>
) -> bool
Auto Trait Implementations
impl !RefUnwindSafe for SourceMap
impl !Send for SourceMap
impl !Sync for SourceMap
impl Unpin for SourceMap
impl !UnwindSafe for SourceMap
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Erased for T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<E> SpecializationError for E
[src]
default fn not_found<S, T>(
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
[src]
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,