pub struct SourceMap { /* private fields */ }
Expand description
The interner for spans.
As most spans are simply stored, we store them as interned form.
- Each ast node only stores pointer to actual data (BytePos).
- The pointers (BytePos) can be converted to file name, line and column using this struct.
§Note
This struct should be shared. swc_common
uses crate::sync::Lrc, which is
std::rc::Rc or std::sync::Arc, depending on the compile option, for this
purpose.
§Note for bundler authors
If you are bundling modules, you should share this struct while parsing modules. Otherwise, you have to implement a code generator which accepts multiple SourceMap.
Implementations§
source§impl SourceMap
impl SourceMap
pub fn new(path_mapping: FilePathMapping) -> SourceMap
pub fn with_file_loader( file_loader: Box<dyn FileLoader + Sync + Send>, path_mapping: FilePathMapping, ) -> SourceMap
pub fn path_mapping(&self) -> &FilePathMapping
pub fn file_exists(&self, path: &Path) -> bool
pub fn load_file(&self, path: &Path) -> Result<Lrc<SourceFile>>
pub fn files(&self) -> MappedLockGuard<'_, Vec<Lrc<SourceFile>>>
pub fn source_file_by_stable_id( &self, stable_id: StableSourceFileId, ) -> Option<Lrc<SourceFile>>
sourcepub fn new_source_file(
&self,
filename: Lrc<FileName>,
src: String,
) -> Lrc<SourceFile>
pub fn new_source_file( &self, filename: Lrc<FileName>, src: String, ) -> Lrc<SourceFile>
Creates a new source_file. This does not ensure that only one SourceFile exists per file name.
sourcepub fn new_source_file_from(
&self,
filename: Lrc<FileName>,
src: Lrc<String>,
) -> Lrc<SourceFile>
pub fn new_source_file_from( &self, filename: Lrc<FileName>, src: Lrc<String>, ) -> Lrc<SourceFile>
Creates a new source_file. This does not ensure that only one SourceFile exists per file name.
src
should not have UTF8 BOM
pub fn mk_substr_filename(&self, sp: Span) -> String
pub fn doctest_offset_line(&self, orig: usize) -> usize
sourcepub fn lookup_char_pos(&self, pos: BytePos) -> Loc
pub fn lookup_char_pos(&self, pos: BytePos) -> Loc
Lookup source information about a BytePos
sourcepub fn try_lookup_char_pos(
&self,
pos: BytePos,
) -> Result<Loc, SourceMapLookupError>
pub fn try_lookup_char_pos( &self, pos: BytePos, ) -> Result<Loc, SourceMapLookupError>
Lookup source information about a BytePos
sourcepub fn lookup_line(
&self,
pos: BytePos,
) -> Result<SourceFileAndLine, Lrc<SourceFile>>
pub fn lookup_line( &self, pos: BytePos, ) -> Result<SourceFileAndLine, Lrc<SourceFile>>
If the relevant source_file is empty, we don’t return a line number.
pub fn lookup_char_pos_adj(&self, pos: BytePos) -> LocWithOpt
sourcepub fn merge_spans(&self, sp_lhs: Span, sp_rhs: Span) -> Option<Span>
pub fn merge_spans(&self, sp_lhs: Span, sp_rhs: Span) -> Option<Span>
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
pub fn span_to_filename(&self, sp: Span) -> Lrc<FileName>
pub fn span_to_unmapped_path(&self, sp: Span) -> Lrc<FileName>
pub fn is_multiline(&self, sp: Span) -> bool
pub fn span_to_lines(&self, sp: Span) -> FileLinesResult
sourcepub fn with_snippet_of_span<F, Ret>(
&self,
sp: Span,
op: F,
) -> Result<Ret, Box<SpanSnippetError>>
pub fn with_snippet_of_span<F, Ret>( &self, sp: Span, op: F, ) -> Result<Ret, Box<SpanSnippetError>>
Calls op
with the source code located at sp
.
pub fn span_to_margin(&self, sp: Span) -> Option<usize>
sourcepub fn with_span_to_prev_source<F, Ret>(
&self,
sp: Span,
op: F,
) -> Result<Ret, Box<SpanSnippetError>>
pub fn with_span_to_prev_source<F, Ret>( &self, sp: Span, op: F, ) -> Result<Ret, Box<SpanSnippetError>>
Calls the given closure with the source snippet before the given Span
sourcepub fn span_to_prev_source(
&self,
sp: Span,
) -> Result<String, Box<SpanSnippetError>>
pub fn span_to_prev_source( &self, sp: Span, ) -> Result<String, Box<SpanSnippetError>>
Return the source snippet as String
before the given Span
sourcepub fn with_span_to_next_source<F, Ret>(
&self,
sp: Span,
op: F,
) -> Result<Ret, Box<SpanSnippetError>>
pub fn with_span_to_next_source<F, Ret>( &self, sp: Span, op: F, ) -> Result<Ret, Box<SpanSnippetError>>
Calls the given closure with the source snippet after the given Span
sourcepub fn span_to_next_source(
&self,
sp: Span,
) -> Result<String, Box<SpanSnippetError>>
pub fn span_to_next_source( &self, sp: Span, ) -> Result<String, Box<SpanSnippetError>>
Return the source snippet as String
after the given Span
sourcepub fn span_extend_to_prev_char(&self, sp: Span, c: char) -> Span
pub fn span_extend_to_prev_char(&self, sp: Span, c: char) -> Span
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.
sourcepub fn span_extend_to_prev_str(
&self,
sp: Span,
pat: &str,
accept_newlines: bool,
) -> Span
pub fn span_extend_to_prev_str( &self, sp: Span, pat: &str, accept_newlines: bool, ) -> Span
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.
sourcepub fn span_extend_to_next_char(&self, sp: Span, c: char) -> Span
pub fn span_extend_to_next_char(&self, sp: Span, c: char) -> Span
Extend the given Span
to just after the next occurrence of c
.
Return the same span if no character could be found or if an error
occurred while retrieving the code snippet.
sourcepub fn span_extend_to_next_str(
&self,
sp: Span,
pat: &str,
accept_newlines: bool,
) -> Span
pub fn span_extend_to_next_str( &self, sp: Span, pat: &str, accept_newlines: bool, ) -> Span
Extend the given Span
to just after the next 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.
sourcepub fn span_until_char(&self, sp: Span, c: char) -> Span
pub fn span_until_char(&self, sp: Span, c: char) -> Span
Given a Span
, try to get a shorter span ending before the first
occurrence of c
char
§Notes
This method returns a dummy span for a dummy span.
sourcepub fn span_through_char(&self, sp: Span, c: char) -> Span
pub fn span_through_char(&self, sp: Span, c: char) -> Span
Given a Span
, try to get a shorter span ending just after the first
occurrence of char
c
.
§Notes
This method returns a dummy span for a dummy span.
sourcepub fn span_until_non_whitespace(&self, sp: Span) -> Span
pub fn span_until_non_whitespace(&self, sp: Span) -> Span
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.
sourcepub fn span_until_whitespace(&self, sp: Span) -> Span
pub fn span_until_whitespace(&self, sp: Span) -> Span
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.
sourcepub fn span_take_while<P>(&self, sp: Span, predicate: P) -> Span
pub fn span_take_while<P>(&self, sp: Span, predicate: P) -> Span
Given a Span
, get a shorter one until predicate
yields false.
pub fn def_span(&self, sp: Span) -> Span
sourcepub fn start_point(&self, sp: Span) -> Span
pub fn start_point(&self, sp: Span) -> Span
Returns a new span representing just the start-point of this span
sourcepub fn end_point(&self, sp: Span) -> Span
pub fn end_point(&self, sp: Span) -> Span
Returns a new span representing just the end-point of this span
sourcepub fn next_point(&self, sp: Span) -> Span
pub fn next_point(&self, sp: Span) -> Span
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>>
sourcepub fn lookup_byte_offset(&self, bpos: BytePos) -> SourceFileAndBytePos
pub fn lookup_byte_offset(&self, bpos: BytePos) -> SourceFileAndBytePos
For a global BytePos compute the local offset within the containing SourceFile
sourcepub fn try_lookup_byte_offset(
&self,
bpos: BytePos,
) -> Result<SourceFileAndBytePos, SourceMapLookupError>
pub fn try_lookup_byte_offset( &self, bpos: BytePos, ) -> Result<SourceFileAndBytePos, SourceMapLookupError>
For a global BytePos compute the local offset within the containing SourceFile
sourcepub fn span_to_char_offset(&self, file: &SourceFile, span: Span) -> (u32, u32)
pub fn span_to_char_offset(&self, file: &SourceFile, span: Span) -> (u32, u32)
Converts a span of absolute BytePos to a CharPos relative to the source_file.
pub fn count_lines(&self) -> usize
pub fn generate_fn_name_span(&self, span: Span) -> Option<Span>
sourcepub fn generate_local_type_param_snippet(
&self,
span: Span,
) -> Option<(Span, String)>
pub fn generate_local_type_param_snippet( &self, span: Span, ) -> Option<(Span, String)>
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:
// 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.
pub fn build_source_map(&self, mappings: &[(BytePos, LineCol)]) -> SourceMap
sourcemap
only.sourcepub fn build_source_map_from(
&self,
mappings: &[(BytePos, LineCol)],
orig: Option<&SourceMap>,
) -> SourceMap
Available on crate feature sourcemap
only.
pub fn build_source_map_from( &self, mappings: &[(BytePos, LineCol)], orig: Option<&SourceMap>, ) -> SourceMap
sourcemap
only.Creates a .map
file.
pub fn build_source_map_with_config( &self, mappings: &[(BytePos, LineCol)], orig: Option<&SourceMap>, config: impl SourceMapGenConfig, ) -> SourceMap
sourcemap
only.Trait Implementations§
source§impl SourceMapper for SourceMap
impl SourceMapper for SourceMap
source§fn span_to_snippet(&self, sp: Span) -> Result<String, Box<SpanSnippetError>>
fn span_to_snippet(&self, sp: Span) -> Result<String, Box<SpanSnippetError>>
Return the source snippet as String
corresponding to the given Span
fn lookup_char_pos(&self, pos: BytePos) -> Loc
fn span_to_lines(&self, sp: Span) -> FileLinesResult
fn span_to_string(&self, sp: Span) -> String
fn span_to_filename(&self, sp: Span) -> Lrc<FileName>
fn merge_spans(&self, sp_lhs: Span, sp_rhs: Span) -> Option<Span>
fn call_span_if_macro(&self, sp: Span) -> Span
fn doctest_offset_line(&self, line: usize) -> usize
Auto Trait Implementations§
impl !Freeze for SourceMap
impl !RefUnwindSafe for SourceMap
impl Send for SourceMap
impl Sync for SourceMap
impl Unpin for SourceMap
impl !UnwindSafe for SourceMap
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Conv for T
impl<T> Conv for T
§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
§fn deserialize(
&self,
deserializer: &mut D,
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.