[][src]Struct swc_common::SourceMap

pub struct SourceMap { /* fields omitted */ }

Methods

impl SourceMap[src]

pub fn new(path_mapping: FilePathMapping) -> SourceMap[src]

pub fn new_doctest(
    path_mapping: FilePathMapping,
    file: FileName,
    line: isize
) -> SourceMap
[src]

pub fn with_file_loader(
    file_loader: Box<dyn FileLoader + Sync + Send>,
    path_mapping: FilePathMapping
) -> SourceMap
[src]

pub fn path_mapping(&self) -> &FilePathMapping[src]

pub fn file_exists(&self, path: &Path) -> bool[src]

pub fn load_file(&self, path: &Path) -> Result<Arc<SourceFile>>[src]

pub fn files(&self) -> MappedLockGuard<Vec<Arc<SourceFile>>>[src]

pub fn source_file_by_stable_id(
    &self,
    stable_id: StableSourceFileId
) -> Option<Arc<SourceFile>>
[src]

pub fn new_source_file(
    &self,
    filename: FileName,
    src: String
) -> Arc<SourceFile>
[src]

Creates a new source_file. This does not ensure that only one SourceFile exists per file name.

pub fn mk_substr_filename(&self, sp: Span) -> String[src]

pub fn doctest_offset_line(&self, orig: usize) -> usize[src]

pub fn lookup_char_pos(&self, pos: BytePos) -> Loc[src]

Lookup source information about a BytePos

pub fn lookup_line(
    &self,
    pos: BytePos
) -> Result<SourceFileAndLine, Arc<SourceFile>>
[src]

pub fn lookup_char_pos_adj(&self, pos: BytePos) -> LocWithOpt[src]

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 spans have to be:

  • the ctxt 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 span_to_lines(&self, sp: Span) -> Result<FileLines, SpanLinesError>[src]

pub fn span_to_snippet(&self, sp: Span) -> Result<String, SpanSnippetError>[src]

Return 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]

Return the source snippet as String before the given Span

pub fn span_extend_to_prev_char(&self, sp: Span, c: char) -> Span[src]

Extend 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]

Extend the given Span to just after the previous occurrence of pat when surrounded by whitespace. Return 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, try to get a shorter span ending before the first occurrence of c char

pub fn span_through_char(&self, sp: Span, c: char) -> Span[src]

Given a Span, try 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, get 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, get 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]

Given a Span, get 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<Arc<SourceFile>>[src]

pub fn lookup_byte_offset(&self, bpos: BytePos) -> SourceFileAndBytePos[src]

For a global BytePos compute 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 source_file.

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]

Take 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:

This example is not tested
// 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 source_map functions and this function to something more robust.

Trait Implementations

impl Default for SourceMap[src]

impl SourceMapper for SourceMap[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> Erased for T

impl<T> Erased for T

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.