[][src]Enum sourcemap::DecodedMap

pub enum DecodedMap {
    Regular(SourceMap),
    Index(SourceMapIndex),
    Hermes(SourceMapHermes),
}

Represents the result of a decode operation

This represents either an actual sourcemap or a source map index. Usually the two things are too distinct to provide a common interface however for token lookup and writing back into a writer general methods are provided.

Variants

Regular(SourceMap)

Indicates a regular sourcemap

Indicates a sourcemap index

Indicates a sourcemap as generated by Metro+Hermes, as used by react-native

Implementations

impl DecodedMap[src]

pub fn from_reader<R: Read>(rdr: R) -> Result<DecodedMap>[src]

Alias for decode.

pub fn to_writer<W: Write>(&self, w: W) -> Result<()>[src]

Writes a decoded sourcemap to a writer.

pub fn lookup_token(&self, line: u32, col: u32) -> Option<Token>[src]

Shortcut to look up a token on either an index or a regular sourcemap. This method can only be used if the contained index actually contains embedded maps or it will not be able to look up anything.

pub fn get_original_function_name(
    &self,
    line: u32,
    col: u32,
    minified_name: Option<&str>,
    source_view: Option<&SourceView>
) -> Option<&str>
[src]

Returns the original function name.

minified_name and source_view are not always necessary. For instance hermes source maps can provide this information without access to the original sources.

Trait Implementations

impl Clone for DecodedMap[src]

impl Debug for DecodedMap[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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.